arturo icon indicating copy to clipboard operation
arturo copied to clipboard

Simple, expressive & portable programming language for efficient scripting

Results 343 arturo issues
Sort by recently updated
recently updated
newest added

[Numbers\lcm] not working for Web builds https://github.com/arturo-lang/arturo/blob/ef8b7df92523462ccf7ff5a895a06819551fd467/src/library/Numbers.nim#L766 ```text builtin "lcm", alias = unaliased, rule = PrefixPrecedence, description = "calculate least common multiplier for given collection of integers", args = {...

enhancement
todo
web
→ Numbers

[Strings\alphabet] add support for Vietnamese alphabet -> vi label: library, enhancement, easy https://github.com/arturo-lang/arturo/blob/a52e6de9dcf16db4f62c9007a76cf6fa7f12a11e/src/helpers/charsets.nim#L111 ```text # TODO(Strings\alphabet) add support for Faroese alphabet -> fo # label: library, enhancement, easy # TODO(Strings\alphabet)...

todo

`combine` was [renamed](https://github.com/arturo-lang/arturo/commit/be70c268e3ebe4f53d158a54b27c12104cb14505) to `couple` on May 9. Arturo needs a new documentation to reflect the changes. `combine` still in documentation https://arturo-lang.io/documentation/library/collections/combine/

bug
documentation
wontfix

[Databases] Add support for MySQL Currently, the only supported database is Sqlite https://github.com/arturo-lang/arturo/blob/a971add892fe3d675b3320f356cf2d96179e2a22/src/library/Databases.nim#L29 ```text #======================================= # TODO(Databases) Add support for MySQL # Currently, the only supported database is Sqlite #...

enhancement
library
todo
stale
new feature
→ Databases

[Converters\define] add documentation example for `.as` https://github.com/arturo-lang/arturo/blob/7e2f1bee9a5648466ae75dbdd238ce56338f051a/src/library/Converters.nim#L530 ```text "methods" : {Block} }, attrs = { "as" : ({Type}, "inherit given type") }, returns = {Nothing}, # TODO(Converters\define) add documentation example...

documentation
library
todo
easy

[Env\parseCmdlineArguments] verify it's working right https://github.com/arturo-lang/arturo/blob/a5683a2dace1b7e4e3b5c822d65f1e82119fa6aa/src/vm/env.nim#L56 ```text return newString(v) # TODO(Env\parseCmdlineArguments) verify it's working right # labels: vm,library,language,unit-test proc parseCmdlineArguments*(): ValueDict = result = initOrderedTable[string,Value]() var values: ValueArray = @[]...

vm
library
unit-test
language
todo

[System\pause] implement for Web/JS builds it could easily correspond to some type of javascript timeout https://github.com/arturo-lang/arturo/blob/a5683a2dace1b7e4e3b5c822d65f1e82119fa6aa/src/library/System.nim#L144 ```text when not defined(WEB): # TODO(System\pause) implement for Web/JS builds # it could easily...

enhancement
library
todo
web
stale
→ System

[System\execute] make function work for Web/JS builds in that case, it could be an easy way of directly executing JavaScript code https://github.com/arturo-lang/arturo/blob/a5683a2dace1b7e4e3b5c822d65f1e82119fa6aa/src/library/System.nim#L77 ```text when not defined(WEB): # TODO(System\execute) make function...

enhancement
library
todo
web
stale
→ System

[System\env] could it be used for Web/JS builds too? and what type of environment variables could be served or would be useful serve? https://github.com/arturo-lang/arturo/blob/a5683a2dace1b7e4e3b5c822d65f1e82119fa6aa/src/library/System.nim#L47 ```text when not defined(WEB): # TODO(System\env)...

enhancement
library
open discussion
todo
web
stale
→ System

[Strings\render] function should also work for Web/JS builds the lack of proper RegEx libraries could be handled by using the newly-added JS helper functions https://github.com/arturo-lang/arturo/blob/a5683a2dace1b7e4e3b5c822d65f1e82119fa6aa/src/library/Strings.nim#L563 ```text when not defined(WEB): #...

enhancement
library
todo