I know I can embed a var such as $aa in the string k expression, so line 3 displays the result 10.
I think the var k will change when I change the value of aa, so I think the line 5 will display the result 15, but in fact it displays 10. why?
1 var aa=10
2 var k="$aa"
3 toast(k) //This is 10
4 aa=aa+5
5 toast(k) //This is 10, I think it should be 15
6 k="$aa"
7 toast(k) //This is 15
Added Content
I think the system will recalculate line 5 in the following code, so I think the new value aa 15 will be embed into k, but in fact , I get the result "10 bb", why?
1 var aa=10
2 var k="$aa"
3 toast(k) //This is 10
4 aa=aa+5
5 k=k+" bb" //I think system will recalculate, so I think new value 15 will be embed into k
6 toast(k) //This is "10 bb", I think it should be "15 bb"