Difference between revisions of "Supported Software"

From 3forge Documentation
Jump to navigation Jump to search
Tag: visualeditor
Tag: visualeditor
Line 1: Line 1:
 
<syntaxhighlight lang="amiscript" line="1">
 
<syntaxhighlight lang="amiscript" line="1">
 
Map m = new Map();
 
Map m = new Map();
 +
List l = new List();
 +
for (int i = 0; i < l.size(); i++) {
 +
    session.log("hey mir");
 +
}
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 19:24, 4 March 2021

1Map m = new Map();
2List l = new List();
3for (int i = 0; i < l.size(); i++) {
4    session.log("hey mir");
5}