From 36f0b2f486fbec48972a96581576b5008062be6f Mon Sep 17 00:00:00 2001 From: Baitinq Date: Sat, 10 May 2025 13:25:41 +0200 Subject: Feature: Add support for imports --- src/bootstrap/tokenizer.src | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/bootstrap/tokenizer.src (limited to 'src/bootstrap/tokenizer.src') diff --git a/src/bootstrap/tokenizer.src b/src/bootstrap/tokenizer.src new file mode 100644 index 0000000..751a0ac --- /dev/null +++ b/src/bootstrap/tokenizer.src @@ -0,0 +1,6 @@ +extern printf = (*i8, varargs) => void; + +let test = () => i64 { + printf("HELLO\n"); + return 2; +}; -- cgit 1.4.1