An unless statement is really like a negated if statementif lang == "de" dog = "Hund"else dog = "dog"end# Now I'll translate it into unless:unless lang == "de" dog = "dog"else dog = "Hund"end