#pragma strict
function Awake(){
Addition (12,33);
var cod = [1,2]; //int array rather than dynamic array of objects
var c = cod[0] + cod[1];
print (c);
}
function Addition (a : float, b : float){ //declare types, otherwise they are objects
var c = a + b;
print (c);
}