diff options
| author | nic-gaffney <gaffney_nic@protonmail.com> | 2023-04-13 23:47:25 -0500 |
|---|---|---|
| committer | nic-gaffney <gaffney_nic@protonmail.com> | 2023-04-13 23:47:25 -0500 |
| commit | a97d9f4a7f8c1e8c1e9d2921b40b34aad3643481 (patch) | |
| tree | 032725940ffbd28907abee8b6b1099b5590fe520 /examples/hello.sloth | |
| parent | 8d548081d53781bd918dccf0714200f0fc995d8b (diff) | |
| download | sloth-a97d9f4a7f8c1e8c1e9d2921b40b34aad3643481.tar.gz | |
Fixed for loops
Diffstat (limited to 'examples/hello.sloth')
| -rw-r--r-- | examples/hello.sloth | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hello.sloth b/examples/hello.sloth index 3dbc685..8201dae 100644 --- a/examples/hello.sloth +++ b/examples/hello.sloth @@ -1,6 +1,6 @@ print("Hello World!"); -## A basic for loop greeting the user in multiple languages +# Comment for greeting in ["Hello", "Hola", "你好"] { print(greeting + " World!"); } |
