Skip to content

Instantly share code, notes, and snippets.

@yudium
Created October 28, 2015 09:53
Show Gist options
  • Save yudium/1553207cde1f27303637 to your computer and use it in GitHub Desktop.
Save yudium/1553207cde1f27303637 to your computer and use it in GitHub Desktop.
program tipe_boolean_dan_operator;
var
A, B, C : Boolean;
begin
A := true;
B := false;
C := A and B;
writeln;
writeln(C); {hasil : FALSE}
readln;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment