ultimatepp/autotest/EscTest/script.esc
cxl 9bdbf8ad25 .autotest
git-svn-id: svn://ultimatepp.org/upp/trunk@7715 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2014-09-22 09:37:04 +00:00

17 lines
215 B
Text

main() {
Print("Hello world!");
x = {};
x.a = 123;
x.b = "Hello!";
:out = x;
x.foo = @(x) { .a = x; };
x.foo("test");
:out2 = x.a;
:out3 = [];
for(i = 0; i < 10; i++)
:out3[] = i;
}