summaryrefslogtreecommitdiff
path: root/examples/types.fy
diff options
context:
space:
mode:
Diffstat (limited to 'examples/types.fy')
-rw-r--r--examples/types.fy4
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/types.fy b/examples/types.fy
index 1ac9751..1b9a0ac 100644
--- a/examples/types.fy
+++ b/examples/types.fy
@@ -12,7 +12,3 @@ assert 2 == say integer 2.8; # Rounds down to the Integer 2
assert say integer double string put say neg 12; # Nonsense but working :)
-assert "TT_INTEGER" == say type 1;
-assert "TT_DOUBLE" == say type 1.0;
-assert "TT_STRING" == say type "1";
-assert "TT_ARRAY" == say type [1 2 3];