summaryrefslogtreecommitdiff
path: root/ipl/packs/idol/sinvktst.iol
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2013-01-27 23:51:56 +0000
committerIgor Pashev <pashev.igor@gmail.com>2013-01-27 23:51:56 +0000
commit6ab0c0f5bf14ed9c15370407b9ee7e0b4b089ae1 (patch)
tree926065cf45450116098db664e3c61dced9e1f21a /ipl/packs/idol/sinvktst.iol
downloadicon-6ab0c0f5bf14ed9c15370407b9ee7e0b4b089ae1.tar.gz
Initial upstream version 9.4.3upstream/9.4.3
Diffstat (limited to 'ipl/packs/idol/sinvktst.iol')
-rw-r--r--ipl/packs/idol/sinvktst.iol13
1 files changed, 13 insertions, 0 deletions
diff --git a/ipl/packs/idol/sinvktst.iol b/ipl/packs/idol/sinvktst.iol
new file mode 100644
index 0000000..cd0f34d
--- /dev/null
+++ b/ipl/packs/idol/sinvktst.iol
@@ -0,0 +1,13 @@
+class sinvbuffer : strinvokable()
+ method forward_char()
+ write("success")
+ end
+ method eval(s,args[])
+ suspend self$strinvokable.eval(map(s,"-","_"))
+ end
+end
+
+procedure main()
+ x := sinvbuffer()
+ x $ eval("forward-char")
+end