Using build from 10-08-2025 13:53:33
[ Trace ] INIT Virtual Stack at MODULE
[00:00:00] Parsing (hello.ms): !!! Error !!! --> hello.ms:29:23
|
29 | (yale_database[mateo]).grow_up()
| ^---
|
= expected EOI, +, -, *, /, %, binary_xor, binary_and, binary_or, bitwise_ls, bitwise_rs, +=, -=, *=, /=, %=, <, >, <=, >=, ==, !=, &&, ||, ^, unwrap, is, or declaration
Error: Did not compile successfully (1 Error)
function ptr filename.mmm#__fn0()
1
Snippet Responsible
Stack Trace of Error
Expected Behavior
MScript is supposed to call
grow_upon the value returned from the map.Any ideas where MScript breaks?
Brain Dump (Optional)
The parenthesis trick the AST parser into thinking the previous expression (
yale_database) is callable. Fix: ensure that LHS for callable expressions are on the same line.That way,
Should eval to:
Instead of
some_function(1)