Last active
March 2, 2017 00:15
-
-
Save Guevara-chan/1bc1e06a4ce4911cfca4dfdf57da1e40 to your computer and use it in GitHub Desktop.
This file contains 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
Macro Def_Comparator(PName, op) | |
Procedure PName(Alfa, Omega) | |
ProcedureReturn Alfa + (-Bool(Alfa op Omega) & (Omega - Alfa)) | |
EndProcedure | |
EndMacro | |
Def_Comparator(Max, <) | |
Def_Comparator(Min, >) | |
; --Usage sample-- | |
Debug Max(4, 2) ; 4, I guess ? | |
Debug Min(7, 9) ; 7, I guess ? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment