We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
a function that work's like Typescript's
Code examples
normal usage
name = prompt("What's your name?: ") print "hello, {@name}!"
pre-set value
age = prompt("How old are you?", 18) -- when given nil, it will set the variable @age to 18 print "you are {@age} years old!"