home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 January / PCWELT_1_2006.ISO / pcwsoft / autoit-v3-setup.exe / Examples / Eval.au3 < prev    next >
Encoding:
Text File  |  2004-09-22  |  107 b   |  6 lines

  1. Dim $a_b = 12
  2. $s = Eval("a" & "_" & "b")  ; $s is set to 12
  3.  
  4. $s =Eval("c")  ; $s = "" and @error = 1
  5.  
  6.