Skip to content

Instantly share code, notes, and snippets.

@gandroz
Created February 21, 2020 21:24
Show Gist options
  • Save gandroz/e69185000339e1b67cc10523fb2c7681 to your computer and use it in GitHub Desktop.
Save gandroz/e69185000339e1b67cc10523fb2c7681 to your computer and use it in GitHub Desktop.
gitlab_snippet
def squares(x):
# Perform calculus
y = x**2
return y
if __name__ == "__main__":
print(f"The square of 10 is: {squares(10)}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment