Skip to content

Instantly share code, notes, and snippets.

@gabr42
Created July 11, 2019 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabr42/9d702e14f77d369cfdc7c7f07e66b9c3 to your computer and use it in GitHub Desktop.
Save gabr42/9d702e14f77d369cfdc7c7f07e66b9c3 to your computer and use it in GitHub Desktop.
When True is Not
program BadBoolean;
{$APPTYPE CONSOLE}
{$R *.res}
var
True: boolean = not false;
procedure Magic;
begin
True := false;
end;
begin
Writeln(True);
Magic;
Writeln(True);
Readln;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment