Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history

main.py

Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.

main.pyBlame13 lines · 1 contributor
9291114Demo1"""hello-python — demo entrypoint."""
2
3
4def greet(name: str) -> str:
5 return f"Hello, {name}!"
6
7
8def main() -> None:
9 print(greet("GlueCron"))
10
11
12if __name__ == "__main__":
13 main()