Added AutoIt Caml and NewtonScript

This commit is contained in:
Bradly Feeley
2008-07-26 13:35:03 -07:00
parent b486a9806f
commit 84a759823e
3 changed files with 17 additions and 0 deletions

1
a/audoit.au3 Normal file
View File

@@ -0,0 +1 @@
MsgBox(0, "Message Box", "Hello World!")

1
c/caml.ml Normal file
View File

@@ -0,0 +1 @@
print_endline "Hello world!";;

15
n/newtonscript.nwt Normal file
View File

@@ -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"
};