Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Latest commit

 

History

History
19 lines (11 loc) · 750 Bytes

conditionals.md

File metadata and controls

19 lines (11 loc) · 750 Bytes

Conditionals

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