Created
February 9, 2018 21:28
-
-
Save bandrzejczak/1e3bcc6f948952557564fbe63a385756 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
| def plotSquares(n, plotter): | |
| for x in range(0, n + 1): | |
| plotter.plot(Point(x, x * x)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment