lua-users home
lua-l archive

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


steve donovan <steve.j.donovan@gmail.com> 于2021年12月3日周五 上午1:16写道:
>
> On Thu, Dec 2, 2021 at 11:52 AM Xavier Wang <weasley.wx@gmail.com> wrote:
> > the ^ issue makes it's unusable on windows...
>
> Right - just pushed. If you set EL_AT, then @ becomes the string quote
> char. I have not tested very much but things seem to work fine!
>
> As for bit32, if it is not found, I make it up, at least the basics
> like band etc. It is actually easier to type the names than the
> operators on the command-line.
>
> steve d.

Great! It works as expected on Windows now!
This is the el.bat I used on Windows:
```
@set HOME=%USERPROFILE%
@set PWD=%CD%
@set EL_AT=1
@lua.exe "%~dp0\el.lua" %*
```

-- 
regards,
Xavier Wang.