summaryrefslogtreecommitdiff
path: root/test_string.nl
diff options
context:
space:
mode:
Diffstat (limited to 'test_string.nl')
-rw-r--r--test_string.nl7
1 files changed, 7 insertions, 0 deletions
diff --git a/test_string.nl b/test_string.nl
new file mode 100644
index 0000000..ec8cd02
--- /dev/null
+++ b/test_string.nl
@@ -0,0 +1,7 @@
+type int = i32;
+type char = i8;
+type string = ptr(char);
+
+int main(int argc, ptr(string) argv) {
+ string s = "kaas";
+}