abs icon indicating copy to clipboard operation
abs copied to clipboard

Home of the ABS programming language: the joy of shell scripting.

Results 78 abs issues
Sort by recently updated
recently updated
newest added

I want to be able to do something like hello.abs --title Brian, and the output would be "Hello Mr. Brian". Without the --title flag, the output would be "Hello Brian"...

enhancement

With a review of the error system. This is gonna be nasty :)

enhancement

Currently, we only test ABS' lexer, parser, evaluator and ability to build cross-platform At some point, we should definitely have a set of scripts to ensure BC is not broken...

enhancement
good first issue

https://golang.org/pkg/time/

enhancement

We should start thinking of including tests of ABS scripts in our CI workflow. Right now only go tests are triggered -- which is fine, but might lead to funny...

enhancement
good first issue

Python's `"".split()` method has a useful feature: When invoked without any arguments, the string is split according to any whitespace, and empty strings are discarded from the result: ```py >>>...

enhancement

I feel a little regretful that I haven't found the relevant library yet. Looking forward to a new version being released.

I think I have found a little bug in the increment section of the FOR loop. This code works fine: ``` #!/usr/bin/env abs # the first 100 terms of the...

When I run the following script on Windows, it is fine: ``` ip = `curl -s https://api.ipify.org?format=json | jq -rj .ip` echo("your ip " + ip) ``` But when I...

Is it possible to enable "Discussions" for this repo? That way newbies like me can ask stupid questions like "How can I loop over all .json files?" IMO, the issue...