diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/simple.halk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/simple.halk b/examples/simple.halk index 6d88314..80d70de 100644 --- a/examples/simple.halk +++ b/examples/simple.halk @@ -1,3 +1,3 @@ -:str:var = 'Hello'; +:str:var = "Hello"; -fprint.stdio, strcat.var, '\n'; +fprint.stdio, strcat.var, "\n"; |