Hacker News new | ask | show | jobs
by chrisshroba 1206 days ago
Just writing a string in a python doesn’t output that string to stdout
1 comments

yes it does

     $ ~ echo '"Hello world"' > quine.py
     $ ~ cat quine.py
     "Hello world"
     $ ~ python quine.py
     $ ~