summaryrefslogtreecommitdiff
path: root/examples/types.fy
diff options
context:
space:
mode:
authoradmin (centauri.fritz.box) <puppet@mx.buetow.org>2014-06-30 23:53:04 +0200
committeradmin (centauri.fritz.box) <puppet@mx.buetow.org>2014-06-30 23:53:04 +0200
commitadc4b59a3e7c9db6f33670164490830d87331228 (patch)
treeadc5d21856852bfb5c3cca794a9c07ad476d877e /examples/types.fy
parent63cf3028445d8d213ffc774f77aafd7283cb4fbd (diff)
parent5ab5de91eb0ae6ed9db78a2c8c47ec67f105e504 (diff)
Diffstat (limited to 'examples/types.fy')
-rw-r--r--examples/types.fy14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/types.fy b/examples/types.fy
deleted file mode 100644
index 1b9a0ac..0000000
--- a/examples/types.fy
+++ /dev/null
@@ -1,14 +0,0 @@
-#*
- * Examples how to convert types
- *#
-
-assert 1 == say 1; # Integer output
-
-assert 1 == say double 1; # Double output
-
-assert 14 == say 1 + string 13; # Implicit type conversion to Integer
-
-assert 2 == say integer 2.8; # Rounds down to the Integer 2
-
-assert say integer double string put say neg 12; # Nonsense but working :)
-