summaryrefslogtreecommitdiff
path: root/tests/examplefiles/intro.ik
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/intro.ik')
-rw-r--r--tests/examplefiles/intro.ik24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/examplefiles/intro.ik b/tests/examplefiles/intro.ik
deleted file mode 100644
index 03fcee39..00000000
--- a/tests/examplefiles/intro.ik
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/ioke
-
-Ioke = LanguageExperiment with(
- goal: :expressiveness,
- data: as(code),
- code: as(data),
- features: [
- :dynamic,
- :object_oriented,
- :prototype_based,
- :homoiconic,
- :macros
- ],
- runtimes:(JVM, CLR),
- inspirations: set(Io, Smalltalk, Ruby, Lisp)
-)
-
-hello = method("Every example needs a hello world!",
- name,
- "hello, #{name}!" println)
-
-Ioke inspirations select(
- features include?(:object_oriented)
-) each(x, hello(x name))