ÿØÿàJFIFÿþ ÿÛC       ÿÛC ÿÀÿÄÿÄ"#QrÿÄÿÄ&1!A"2qQaáÿÚ ?Øy,æ/3JæÝ¹È߲؋5êXw²±ÉyˆR”¾I0ó2—PI¾IÌÚiMö¯–þrìN&"KgX:Šíµ•nTJnLK„…@!‰-ý ùúmë;ºgµŒ&ó±hw’¯Õ@”Ü— 9ñ-ë.²1<yà‚¹ïQÐU„ہ?.’¦èûbß±©Ö«Âw*VŒ) `$‰bØÔŸ’ëXÖ-ËTÜíGÚ3ð«g Ÿ§¯—Jx„–’U/ÂÅv_s(Hÿ@TñJÑãõçn­‚!ÈgfbÓc­:él[ðQe 9ÀPLbÃãCµm[5¿ç'ªjglå‡Ûí_§Úõl-;"PkÞÞÁQâ¼_Ñ^¢SŸx?"¸¦ùY騐ÒOÈ q’`~~ÚtËU¹CڒêV  I1Áß_ÿÙdef assert( no, cond ) if cond then else raise( 'assert ' + to_s(no) + ' failed' ) end end assert( 1, concat(concat(concat('str=', 'a'), "b"), 'c') == 'str=abc' ) assert( 2, 'operator' + ' ok' == 'operator ok' ) assert( 3, 1 + 1 == 2 ) assert( 4, 4 * 1 + 10 * 1 == 14 ) if true then assert( 5, true ) else assert( 6, false ) end i = 1 while i == 1 do i = false end assert( 7, i == false ) assert( 8, nil == nil ) def func assert( 9, true ) end func def argfunc( str ) assert( 10, str == 'ok' ) end argfunc 'ok'