From 11be32bbaf9d22ba7ff60767326ef152810f9c7b Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Tue, 1 Nov 2022 21:51:34 -0400 Subject: [PATCH] examples: Add double print file example --- examples/2prints.lox | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 examples/2prints.lox diff --git a/examples/2prints.lox b/examples/2prints.lox new file mode 100644 index 0000000..9e843ba --- /dev/null +++ b/examples/2prints.lox @@ -0,0 +1,2 @@ +print "hello world!"; +print 1 + 3 * 3 + (17 - 1) * 2; -- libgit2 1.1.1