Files
wren/test/language/module_variable/undefined.wren
Bob Nystrom 10f149f359 Add "def" syntax sugar for named function definitions.
This is technically redundant but it makes functional/procedural code
look a *lot* more natural.
2015-12-01 08:05:46 -08:00

6 lines
72 B
Plaintext

def fn() {
System.print(a)
System.print(b)
}
// expect error line 6