Skip to content

Instantly share code, notes, and snippets.

@bandrzejczak
Created February 9, 2018 21:28
Show Gist options
  • Select an option

  • Save bandrzejczak/1e3bcc6f948952557564fbe63a385756 to your computer and use it in GitHub Desktop.

Select an option

Save bandrzejczak/1e3bcc6f948952557564fbe63a385756 to your computer and use it in GitHub Desktop.
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