lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


2011/11/21 Dirk Laurie <dirk.laurie@gmail.com>:
> 2011/11/21 Xavier Wang <weasley.wx@gmail.com>:
>> I tried it out on Windows with love 0.7.2, but it exited quietly, the
>> exit code is 0...
>
> I tested it on love.exe under Wine, and it works if one has vcrun2008
> installed via winetricks.
>

When all else fails, RTFM!

The Love documentation reveals two ways to get console I/O under
Windows.

1. Run as `love --console vilua.love`
2. Put `function love.conf(t) t.console = true end`  in main.lua.

Dirk