]> git.lizzy.rs Git - metalua.git/blobdiff - src/samples/xmatch_test.mlua
fixed xmatch extension
[metalua.git] / src / samples / xmatch_test.mlua
index f7c6d3e904ac55a65abb3c11ca678aee82530005..92897750636a640f80943b6f88a5e9490b4dbc5d 100755 (executable)
@@ -4,7 +4,7 @@ WIDTH=60
 function p(msg) io.write(msg..' ':rep(WIDTH-#msg)) end
 
 ----------------------------------------------------------------------
-p"match as an expression"
+p "match as an expression"
 print(match 1 with 1 -> 'ok' | 2 -> 'KO')
 
 ----------------------------------------------------------------------