Conditionals
October 27, 2020 ยท View on GitHub
This covers the general concept of if/else.
Tracks should teach non-standard ways that conditionals are used in their languages (e.g. the ternary operator, postfix if in Ruby, unless in Ruby, x if y else z in Python).
Exercises
LogLevel
This exercise takes a code derived from a log message and returns a unique symbol to characterize it.
Implementations
| Track | Exercise | Changes |
|---|---|---|
| Elixir | cond | teaches cond/1 function conditionals |