mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 19:18:53 +08:00
15 lines
169 B
GLSL
15 lines
169 B
GLSL
name = 'tom'
|
|
assert(name == 'tom')
|
|
|
|
var name='jim'
|
|
assert(name == 'jim')
|
|
|
|
unset(name);
|
|
assert(name == 'tom')
|
|
|
|
if(name == 'tom') {
|
|
var age = 100;
|
|
}
|
|
assert(age == 100)
|
|
|