Simple Sum

Simple contract that sums two numbers and returns the result.

contract test {
	public sum(a:number, b:number):number
	{
		return a + b;
	}
}

Last updated