> x := 5: # compare if x<y or x>y or x=y > y := 7: > if (x < y) then > lprint(x, ' is less than ', y); > else > if (x > y) then > lprint(x, ' is greater than ', y); > else > lprint(x, ' is equal to ', y); > fi; > fi: 5 is less than 7Here the second if-then-fi command is contained within the else case of the outer if-then-fi. It is evaluated only if x