diff options
author | c+1 | 2023-05-22 22:50:50 -0400 |
---|---|---|
committer | c+1 | 2023-05-22 22:50:50 -0400 |
commit | 8d50b4bf8792be8b9a7211da8f4110ba045b5c49 (patch) | |
tree | b82f1c02f22263b428e5f57f5a48d774c687664d | |
parent | 9f479d2d093f5656f887c246201ed2fa4a2f1f4b (diff) |
man.md
-rw-r--r-- | examples/simple.halk | 2 | ||||
-rw-r--r-- | man.md (renamed from man.txt) | 0 | ||||
-rw-r--r-- | src/main.c | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/examples/simple.halk b/examples/simple.halk index e88416b..391147b 100644 --- a/examples/simple.halk +++ b/examples/simple.halk @@ -1 +1 @@ -str:variable = "Hi."; +str:variable = 'Hi.'; @@ -13,7 +13,7 @@ int main(int argc, char* argv[]) { long fsource_size; char *source; - fsource = fopen ("examples/hello.halk", "rb"); + fsource = fopen ("examples/simple.halk", "rb"); if (!fsource) { log_err("Source file not found"); exit(1); |