Test 007: Test PASSED VARIABLES.
Ve now call a tag and pass variable X. The tag will print X (and its length, which should be 31):
<% x = 'This is the value of variable X' %>We now try limited stem passing (5 values of stem., the first 5 squares):
<% Do i = 1 To 5 stem.i = i*i End stem.0 = 5 %>We now try a large variable (600 chars, > maxStringLength in most implementations):
<% Drop stem. x = Copies("0123456789",60) %>We now try the same with stems (stem.1 is a 900 char variable):
<% x = "" stem.0 = 1 stem.1 = Copies("0123456789",90) %>