for example ```nim var another = if conditional == 0: "zero" elif conditional mod 2 == 0: "even" else: "odd" ```
for example