Contact: aviboots(AT)netvision.net.il
41,225 questions
53,727 answers
573 users
void main() { var n = 3; if (n < 0){ print('$n is negative'); } else if (n == 0) { print('$n is zero'); } else { print('$n is positive'); } } /* run: 3 is positive */