Skip to content

Instantly share code, notes, and snippets.

@Guevara-chan
Last active March 2, 2017 00:15
Show Gist options
  • Save Guevara-chan/1bc1e06a4ce4911cfca4dfdf57da1e40 to your computer and use it in GitHub Desktop.
Save Guevara-chan/1bc1e06a4ce4911cfca4dfdf57da1e40 to your computer and use it in GitHub Desktop.
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