fork download
  1. local pi = 3.14159
  2. local pi_name = "PI"
  3. io.write("The value of ")
  4. io.write(pi_name)
  5. io.write(" is ")
  6. io.write(pi)
  7. print(", isn't that cool?")-- your code goes here
Success #stdin #stdout 0s 15008KB
stdin
Standard input is empty
stdout
The value of PI is 3.14159, isn't that cool?