Last active
September 24, 2019 19:36
-
-
Save VovaStelmashchuk/f0aa8cf0fb4e1eb204be3f673044f0f8 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
val pointA = Point() | |
val pointB = Point() | |
val plusResult = pointA + pointB | |
val minusResult = pointA - pointB | |
val divResult = pointA / 4.2 | |
val timesResult = pointA * 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment