Alex Nadalin

Results 145 comments of Alex Nadalin

Another example: ``` commands curl res = curl("-s", "http://api.domain.com/user/me").json() ``` I feel this is a stretch / a bit weird :)

I think the main issue is that I never thought of ABS as a shell, but rather a scripting language -- though I see where you're going and I'm not...

Very keen on regexes and exceptions :)

Though that will break the current functionality which is to do case-insensitive string comparison

Thanks @skx! Options params made it in https://github.com/abs-lang/abs/pull/369 but I'm still on the fence on regexes. Mostly because I used the ~ operator for case insensitive string comparison so I've...

I'll have a look, thanks :) On Sat, Feb 23, 2019 at 8:08 PM Erich (Rick) Arnold < [email protected]> wrote: > @odino : > Take a look at the Bash...

Here's what happens: ``` $ cat bash.ignore echo $0 echo $1 echo $2 $ cat abs.ignore echo(arg(0)) echo(arg(1)) echo(arg(2)) $ bash bash.ignore 1 2 3 bash.ignore 1 2 $ abs...

That is fine by me -- eventually, I want it to be seamless for people used to shell scripting. This poses a new "problem", how do we get the path...

@kmptkp any feedback?

I'd like to move this to 1.9, when we have modules and can do `require("system").executable`