- Complete language specification (math_prog_lang.md) - M0 blocker tracking issue template - Glyph escape sequences reference - Operator precedence table - Example programs from specification - Project README Ready for pre-M0 implementation phase
9 lines
No EOL
180 B
Text
9 lines
No EOL
180 B
Text
databaseQuery ≜ λquery: 〔
|
||
conn ← database ⊕
|
||
⌈
|
||
result ← execute(conn, query)
|
||
✎"Query executed"
|
||
result
|
||
⌉_db_lock
|
||
conn ⊖
|
||
〕 |