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