Created
August 2, 2020 19:01
-
-
Save sudomaxime/59af995de82c4f71841c45ef4b19e4e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INCLUDE QUESTION | |
BOOL should_admit | |
PROGRAM email | |
! Simple program to deal with email question management | |
IF QUESTION.ABOUT_EMAIL | |
GOTO USE_PERSONAL_EMAIL | |
USE_PERSONAL_EMAIL | |
GOTO SAY_REASONS | |
should_admit=FALSE | |
SAY_REASONS | |
reasons=RAND[1..3] | |
IF reasons 1 | |
PRINT "I used it for convenience" | |
IF reasons 2 | |
PRINT "Having one device is easier" | |
IF reasons3 | |
PRINT "I don't want personal stuff and work stuff on the same address" | |
GOTO | |
END PROGRAM email |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment