From f80f005c602654abe137f152a5128c8abd81f9a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20L=2E=20=C5=A0ijanec?= Date: Sun, 3 May 2020 21:00:05 +0200 Subject: variables setting and getting now works from bvr scripts note to future self: don't make this a turing complete language --- test/ram-test.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/ram-test.c (limited to 'test/ram-test.c') diff --git a/test/ram-test.c b/test/ram-test.c new file mode 100644 index 0000000..8ef0aa2 --- /dev/null +++ b/test/ram-test.c @@ -0,0 +1,6 @@ +#include +int ram_contents[1024]; +int main(int argc, char * argv[]) { + printf("%s\n", ram_contents); + return 0; +} -- cgit v1.2.3