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
main
main.py191 B · 13 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
"""hello-python — demo entrypoint."""


def greet(name: str) -> str:
    return f"Hello, {name}!"


def main() -> None:
    print(greet("GlueCron"))


if __name__ == "__main__":
    main()