It's probably way too late for this but I always had the idea of allowing (but 
not requiring) explicit `end if` etc markers:
    
    
    proc dasDing(arg: int): string =
      if arg == 0:
        result = "0"
      else:
         result = "not 0"
      end if
    end proc
    
    
    Run

Reply via email to