summaryrefslogtreecommitdiff
path: root/test.toc
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-09-21 16:08:55 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-09-21 16:08:55 -0400
commitfc35d3e7cb55c90bf04d93eed584db0868db13bc (patch)
tree0f2d0fa5f24a520ae859b74e5b808f03452e564d /test.toc
parentbf72f1b8fd0546fb4794e3d36ffa7cc38b79e6c5 (diff)
deref; improved eval, decls
Diffstat (limited to 'test.toc')
-rw-r--r--test.toc7
1 files changed, 3 insertions, 4 deletions
diff --git a/test.toc b/test.toc
index 8d572ac..6868061 100644
--- a/test.toc
+++ b/test.toc
@@ -1,6 +1,5 @@
main @= fn() {
- x : int;
- y : *i64 = &x;
- N @= 12.3;
- z := &N;
+ Q @= 8;
+ P @= 7;
+ x : [P+Q]f32;
};