MLStyle.Modules.Cond

MLStyle.Modules.Cond

@cond

using MLStyle.Modules.Cond

x = 2
@cond begin
    x < 0 => :lessthan0
    x == 0 => :equal0
    _ => :greaterthan0
end # => :greaterthan0