From f9c86d1d69f69472a67343f789b7e65b537cd597 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Tue, 14 Aug 2012 23:53:55 +0200 Subject: [PATCH] Adding another test qc file, for constant folding --- data/numbers.qc | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 data/numbers.qc diff --git a/data/numbers.qc b/data/numbers.qc new file mode 100644 index 0000000..6fac97a --- /dev/null +++ b/data/numbers.qc @@ -0,0 +1,22 @@ +/* this is the WIP test for the parser... + * constantly adding stuff here to see if things break + */ +void(string) print = #1; +void(string,string) print2 = #1; +void(string,string,string) print3 = #1; +string(float) ftos = #2; + +void() main = { + float a, b, c; + a = 3 + 4 + 5; + b = (5 * 2) + 1; + c = 3 & 1; + c = 1 | 2; + a = 3 && 4; + b = 0 && 4; + c = 4 && 0; + a = 1 || 1; + b = 1 || 0; + c = 0 || 1; + a = 0 || 0; +}; -- 2.39.2