I/O in Cyclone
Input and Output in Cyclone
Output
You can output text to console using in-built print function.
Print function only takes string as input. If you are trying to pass in other variables or values as input, convert them to string first using Conversion functions. Example :
print(string(10))or
var a = 10
print(string(a))print("3Dubs")Input
You can take user input using in-built input function.
var x = input()