Skip to content

Instantly share code, notes, and snippets.

@ology
Created August 21, 2022 07:08
Show Gist options
  • Save ology/8db73a715507bd7f3db09fc10ae57d50 to your computer and use it in GitHub Desktop.
Save ology/8db73a715507bd7f3db09fc10ae57d50 to your computer and use it in GitHub Desktop.
Laws of Thought
#!/usr/bin/env perl
use constant A => 1;
print "Identity\n"
if A == A;
print "Non-contradiction\n"
if A != !A;
print "Excluded middle\n"
if !(A && !A);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment