Created
March 15, 2017 00:10
-
-
Save MattMcFarland/a610dd6a7185ed26876f16c80cdbcbd8 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
jsc.checkForall(jsc.integer, jsc.integer, (a, b) => a + b === b + a) | |
// is the same as | |
jsc.check(jsc.forall(jsc.integer, jsc.integer, (a, b) => a + b === b + a)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment