Skip to content

Commit

Permalink
Add main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
YaroslavBordovoy committed Sep 30, 2022
1 parent dfb92d2 commit 5c28b42
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from faker import Faker


fake = Faker()

def main():
return f"Hello, {fake.first_name()}"

if __name__ == '__main__':
print(main())

0 comments on commit 5c28b42

Please sign in to comment.