OSDN Git Service

Ring 1.10 以来となる開発環境の日本語ローカライズ版 (評価版) を追加 (ノートパッド、フォームデザイナー、対話型実行環境、ファイルの検索)。
[ring-lang-081/ring.git] / applications / ringrepl / source / replwscript.ring
diff --git a/applications/ringrepl/source/replwscript.ring b/applications/ringrepl/source/replwscript.ring
new file mode 100644 (file)
index 0000000..a7413f7
--- /dev/null
@@ -0,0 +1,11 @@
+# Application  : Read-Eval-Print-Loop (REPL) - GUI Application - Script
+# Author       : Mahmoud Fayed <msfclipper@yahoo.com>
+
+while true
+        give cCode
+        try
+                eval(cCode)
+        catch
+                see cCatchError
+        done
+end