Скала Методы

def multiply(num1:Int, num2:Int):Int={
		return num1*num2;
	}
print(multiply(2,6))
Asir In Tisar