/* * simple if with else */ module if_statement; var a, b, c : integer; begin a := 2; b := 1; if a > b do c := 42; else c := 0; end end