r9 vs r10
......
135135
{{{#!if this['true']==true
136136
출력 }}}
137137
----
138
a=b 테스트
138
a=b 테스트 : 변수 호출하지 않으면 null == null 상태가 됨.
139139
{{{#!if a==b
140140
출력}}}
141141
----
142
this['a']=this['b'] 테스트
142
this['a']=this['b'] 테스트 : 변수 호출하지 않으면 null == null 상태가 됨.
143143
{{{#!if this['a']==this['b']
144144
출력}}}
145145
----
......