Files
Toy/tests/integrations/test_scopes.toy
2024-10-27 13:44:09 +11:00

20 lines
276 B
Plaintext

//shadowing
var answer = 42;
print answer; //42
{
var answer = 7;
print answer; //7
}
print answer; //42
//rebinding
var question = 42;
print question; //42
{
var question = question;
print question; //42
}
print question; //42
//TODO: scope test case