Hacker News new | ask | show | jobs
by MitPitt 1208 days ago
a non-empty quine in python would be `"hello world"`
1 comments

Just writing a string in a python doesn’t output that string to stdout
yes it does

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