func main(a) { println("abs: ", a < 0 ? -a : a) } //TESTCASE: 6 //abs: 6 //TESTCASE: -7 //abs: 7 //TESTCASE: 0 //abs: 0