function test() { return 3; } function test(a, b) { print 5; return a + b; } test(); print test(2, 4);