fork download
  1. # This is a comment
  2. echo("What's your name? ")
  3. var name: string = readLine(stdin)
  4. echo("Hi, ", name, "!")
Success #stdin #stdout 0.02s 2128KB
stdin
Standard input is empty
stdout
What's your name? 
Hi, !