Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d6d7783

Browse files
UV project files
1 parent 5aca33c commit d6d7783

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.11

main.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def main():
2+
print("Hello from hellopython!")
3+
4+
5+
if __name__ == "__main__":
6+
main()

pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[project]
2+
name = "hellopython"
3+
version = "0.1.0"
4+
description = "Introduction to Python with Marimo"
5+
readme = "README.md"
6+
requires-python = ">=3.11"
7+
dependencies = []

0 commit comments

Comments
 (0)