13 lines
172 B
Markdown
13 lines
172 B
Markdown
|
|
# Legacy Literate Successor
|
||
|
|
|
||
|
|
```python {#config}
|
||
|
|
CONFIG = {"ready": True}
|
||
|
|
```
|
||
|
|
|
||
|
|
```python {#main tangle="src/app.py"}
|
||
|
|
<<config>>
|
||
|
|
|
||
|
|
def main():
|
||
|
|
return CONFIG["ready"]
|
||
|
|
```
|