Skip to content

Instantly share code, notes, and snippets.

@yudium
Created October 28, 2015 10:00
Show Gist options
  • Save yudium/917645afbae031aca579 to your computer and use it in GitHub Desktop.
Save yudium/917645afbae031aca579 to your computer and use it in GitHub Desktop.
program tes;
var
A, B : Integer;
begin
A := 3;
B := 5;
writeln(A < B); {hasil : TRUE}
writeln(A > B); {hasil : FALSE}
readln;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment