diff options
author | c+1 | 2023-05-05 18:03:45 -0400 |
---|---|---|
committer | c+1 | 2023-05-05 18:03:45 -0400 |
commit | 8918059339439de945c3bbc301e04ec6ce804b7c (patch) | |
tree | 518b0ccd9f22ead6049cd79ff8fef2709544423e | |
parent | 063c5192adc7f8d1231b7d824408439cb2bc13a7 (diff) |
read me dot em dee
-rw-r--r-- | README.md | 18 |
1 files changed, 12 insertions, 6 deletions
@@ -33,15 +33,21 @@ Note that all syntax described is liable to sudden and violent change. ```HALK let variable = 4; -let another_variable = "Hello, World!"; +let another_variable = "Hello, World!\n"; -fn main / - for variable > 0 / +fn main { + while variable >= 0 { say another_variable; variable -= 1; - \ - say "done."; -\ + } + say "done.\n"; +} ``` +>Hello, World! +>Hello, World! +>Hello, World! +>Hello, World! +>done. + ***HALK*** **progress:** 10% |