Print Statements
Learn about the different print statements here.
Example
func main(){
println("Hello"); println("World");
}Example
func main(){
print("Hello");
print("World");
}Example
func main(){
x : 12;
x = 10 ? println("is ten");
x != 10 ? print_err("not ten");
}Last updated