Fahad/MCG-CS/Code/code.kcl
changeset 45 7545b1bc1514
equal deleted inserted replaced
44:a751aa1ee4f7 45:7545b1bc1514
       
     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