10 lines
102 B
Plaintext
10 lines
102 B
Plaintext
|
foo = "bar";
|
||
|
func = 'foo';
|
||
|
|
||
|
assert_equal("bar", func());
|
||
|
|
||
|
foo = "xyz";
|
||
|
|
||
|
assert_equal("xyz", func());
|
||
|
|