diff options
author | c+1 | 2023-05-03 10:23:35 -0400 |
---|---|---|
committer | c+1 | 2023-05-03 10:23:35 -0400 |
commit | 9d981a2597dca067572ee16d1a3f6e99f9c6ddd6 (patch) | |
tree | 37de867b64491259e2b1dd33330bc234fd0b6eb1 /examples | |
parent | 191c063e6c7332a8558835ce0d4710c3f8ba7de8 (diff) |
in which i learn how c structs work
Diffstat (limited to 'examples')
-rw-r--r-- | examples/hello.halk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/hello.halk b/examples/hello.halk index f36db0a..da10494 100644 --- a/examples/hello.halk +++ b/examples/hello.halk @@ -1,4 +1,5 @@ -USE.io; +USE."io"; message="Hello, World!"; + io~o.message; |