So `Type x = test ? a : b;` becomes `val x = if (t...
# announcements
r
So
Type x = test ? a : b;
becomes
val x = if (test) a else b