Created
September 18, 2018 12:48
-
-
Save sajjadyousefnia/957b639ff83a0877bb5878ed11e8a074 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
print(circleOperation(3.0, ::calArea)) // 28.274333882308138 | |
print(circleOperation(3.0, calArea)) // won't compile | |
print(circleOperation(3.0, calArea())) // won't compile | |
print(circleOperation(6.7, ::calCircumference)) // 42.09734155810323 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment