v2 / vlib / v / checker / tests / unnecessary_parenthesis.vv
9 lines · 9 sloc · 161 bytes · 0f2f97e3e568add51300d4859e3f4534123a9791
Raw
1fn main() {
2 if (1 == 1) {
3 println('yeay')
4 } else if (1 == 2) {
5 println("oh no :'(")
6 } else if (1 == 3) {
7 println("what's wrong with physics ????")
8 }
9}
10