Skip to content
  • Julien Lopez's avatar
    Add syntactic sugar for if_then: · 5aabfea3
    Julien Lopez authored
    	if cond then expr <=> if cond then expr else []
    
    Note that in case of ambiguity the "else" statement is part of the last "if"
    statement:
    
    	if a then if b then c else d <=> if a then (if b then c else d)
    5aabfea3