Files
markitect-tool/examples/literate/app.md

248 B

Literate App Example

This example explains the helper before showing the application entry point.

def helper():
    return "ready"
<<helpers>>

def main():
    return helper()