Skip to content

Instantly share code, notes, and snippets.

@teivah
Last active October 30, 2018 08:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save teivah/ee552e06dbe65365dd321c5ffb470c92 to your computer and use it in GitHub Desktop.
Save teivah/ee552e06dbe65365dd321c5ffb470c92 to your computer and use it in GitHub Desktop.
class Point(var x: Int, var y: Int) {
def move(dx: Int, dy: Int): Unit = {
x += dx
y += dy
println(s"$x $y")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment