Last active
January 7, 2021 18:55
-
-
Save BarisSari/ac2f0a351ec7f7a4831fe8637a51e896 to your computer and use it in GitHub Desktop.
This file contains 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 example(): | |
return "Hi from foo" | |
class ExampleFooClass: | |
def __init__(self, name="example class"): | |
self.name = name | |
def print(self): | |
print(self.name) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment