Last active
January 7, 2021 18:43
-
-
Save BarisSari/698941522ad409accf5e67aaf1f25a16 to your computer and use it in GitHub Desktop.
src/foo/first_module.py
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