[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] el - an interactive shell-friendly form of Lua
- From: Xavier Wang <weasley.wx@...>
- Date: Fri, 3 Dec 2021 12:09:21 +0800
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.