author | Francesco Abbate <francesco.bbt@gmail.com> | 2012年08月15日 20:26:48 +0200 |
---|---|---|
committer | Francesco Abbate <francesco.bbt@gmail.com> | 2012年08月15日 20:26:48 +0200 |
commit | da0b81ea163adb3b6e78ead695e47c12a4ccae43 (patch) | |
tree | d532a9e461e04d4ab6cfd29fef9637d418c0e0b7 /demo-init.lua | |
parent | a4a09975c34df7a41d3f204a76c684966ca1287f (diff) | |
download | gsl-shell-da0b81ea163adb3b6e78ead695e47c12a4ccae43.tar.gz |
-rw-r--r-- | demo-init.lua | 6 |
diff --git a/demo-init.lua b/demo-init.lua index bfb118ed..fd1e0ee9 100644 --- a/demo-init.lua +++ b/demo-init.lua @@ -24,11 +24,11 @@ end local function print_demos_list() for group, t in pairs(demo_list) do - echo('*** ', group) + print('*** ', group) for k, v in ipairs(t) do - echo(v.name .. ' - ' .. v.description) + print(v.name .. ' - ' .. v.description) end - echo '' + print '' end end |