aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/simple.halk2
-rw-r--r--man.md (renamed from man.txt)0
-rw-r--r--src/main.c2
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.';
diff --git a/man.txt b/man.md
index 3c31517..3c31517 100644
--- a/man.txt
+++ b/man.md
diff --git a/src/main.c b/src/main.c
index 040ef73..38f0136 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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);