fork download
  1. # your code goes here
  2. echo("nimrod? really?")
  3. # This is a comment
  4. echo("What's your name? ")
  5. var name: string = readLine(stdin)
  6. echo("Hi, ", name, "!")
  7.  
Success #stdin #stdout 0.02s 2176KB
stdin
mika
stdout
nimrod? really?
What's your name? 
Hi, mika!