Logic in dryLang is kept incredibly short.
t and f)There is no true or false keyword. Instead, use the 1-character equivalents:
t (true)f (false)unknownSometimes a state is missing, unresolvable, or essentially "null". In dryLang, this is represented by the unknown keyword.
unknownunknown behaves as falsy in conditions.
??)You can use the ?? operator to provide a fallback value if a variable is unknown.