|
|
|
|
|
by mmastrac
408 days ago
|
|
I'll raise you a polyglot script that doesn't require eval: :) 1 // len("""
console.log('javascript');
/* """)
print('python');
# */
Example: # python3 /tmp/test.py
python
# node /tmp/test.js
javascript
I _believe_ the only source limitations are the the JS cannot contain `"""` and Python cannot contain `*/`. |
|