Y
Hacker News
new
|
ask
|
show
|
jobs
by
RamiK
4489 days ago
Python can do it. As I'm sure every interpreted language can.
e.g.
./data.py:
me = "RamiK"
EOF
./code.py
import data
print(data.me)
EOF