Modules/.docs/Gallery/oscript.txt
2024-03-21 13:57:27 +03:00

16 lines
207 B
Text

method myLogFunction(value) {
print value;
}
myLogFunction("hello");
var i = 10;
if (i == 10) {
while (i > 0) {
print i;
i = i - 1;
}
} else {
print "still doin' heavy calculations...";
}