Subversion Repositories wimsdev

Rev

Rev 9148 | Blame | Compare with Previous | Last modification | View Log | RSS feed

!if a issametext a
  test1=1
!else
  test1=0
!endif

!if a issametext b
  test2=1
!else
  test2=0
!endif

!if a notsametext b
  test3=1
!else
  test3=0
!endif

!if a isin abc
  test4=1
!else
  test4=0
!endif

!if a notin abc
  test5=1
!else
  test5=0
!endif

i=0
!while i <10
 i=$[i+1]
!endwhile
test6=$i
i=5
!whileval i <10
 i=$[i+1]
!endwhile
test7=$i


vartest=$test1\
$test2\
$test3\
$test4\
$test5\
$test6\
$test7