Last active
January 7, 2019 14:39
-
-
Save andrevidela/8dd1d8d8e8d374d3d1aab09a2bddb452 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
| let linearMinus = Linear(x: 3, c: -5) | |
| let linearPlus = Linear(x: 3, c: 5) | |
| let quadMinus = Quadratic(x²: 9, x: 0, c: -25) | |
| linearPlus ** linearMinus == quadMinus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment