aboutsummaryrefslogtreecommitdiff
path: root/examples/hello.sloth
blob: 8201dae6dd4cf886fbd6c1f12960575fcf225086 (plain)
1
2
3
4
5
6
print("Hello World!");

# Comment
for greeting in ["Hello", "Hola", "你好"] {
    print(greeting + " World!");
}