1
void TestFunction var output = 0, var inputA = 1, var inputB = 2
2
begin
3
var test = 0;
4
test = inputA + inputB;
5
print test;
6
endfunc;
7
8
var one = 1;
9
var two = 2;
10
var three = 3;
11