Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aca33c commit d6d7783Copy full SHA for d6d7783
.python-version
@@ -0,0 +1 @@
1
+3.11
main.py
@@ -0,0 +1,6 @@
+def main():
2
+ print("Hello from hellopython!")
3
+
4
5
+if __name__ == "__main__":
6
+ main()
pyproject.toml
@@ -0,0 +1,7 @@
+[project]
+name = "hellopython"
+version = "0.1.0"
+description = "Introduction to Python with Marimo"
+readme = "README.md"
+requires-python = ">=3.11"
7
+dependencies = []
0 commit comments