Reference Guide
Syntax Catalog
Complete syntax reference for Clean Language
Variables
integer x = 42
number pi = 3.14
string name = "Clean"
boolean active = trueDeclare typed variables with initial values.
print "Hello, World!"
print("With parentheses")Output text to the console. Parentheses are optional.
Comments
// This is a commentCopied!