From 84a759823eb2871a7d5141b70ad8893de618378c Mon Sep 17 00:00:00 2001 From: Bradly Feeley Date: Sat, 26 Jul 2008 13:35:03 -0700 Subject: [PATCH] Added AutoIt Caml and NewtonScript --- a/audoit.au3 | 1 + c/caml.ml | 1 + n/newtonscript.nwt | 15 +++++++++++++++ 3 files changed, 17 insertions(+) create mode 100644 a/audoit.au3 create mode 100644 c/caml.ml create mode 100644 n/newtonscript.nwt diff --git a/a/audoit.au3 b/a/audoit.au3 new file mode 100644 index 00000000..b0bb59d9 --- /dev/null +++ b/a/audoit.au3 @@ -0,0 +1 @@ +MsgBox(0, "Message Box", "Hello World!") \ No newline at end of file diff --git a/c/caml.ml b/c/caml.ml new file mode 100644 index 00000000..2ef37ded --- /dev/null +++ b/c/caml.ml @@ -0,0 +1 @@ +print_endline "Hello world!";; diff --git a/n/newtonscript.nwt b/n/newtonscript.nwt new file mode 100644 index 00000000..22312f9c --- /dev/null +++ b/n/newtonscript.nwt @@ -0,0 +1,15 @@ +baseview := + {viewBounds: {left: -3, top: 71, right: 138, bottom: 137}, + viewFlags: 581, + declareSelf: 'base, + _proto: protoFloatNGo, + debug: "baseview" + }; + +textview := * child of baseview * + {text: "Hello World!", + viewBounds: {left: 33, top: 24, right: 113, bottom: 46}, + viewFlags: 579, + _proto: protoStaticText, + debug: "textview" + };