mlox/lox.t/variable/undefined_local.lox

3 lines
83 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
{
print notDefined; // expect runtime error: Undefined variable 'notDefined'.
}