ArkScript v4.4.0
·
57 commits
to dev
since this release
Immutable
release. Only release title and notes can be modified.
Deprecations
list:permutationsis deprecated in favor oflist:combinationslist:permutationsWithReplacementis deprecated in favor oflist:combinationsWithReplacement
Added
- new debugger commands:
stack <n>andlocals <n>to print the values on the stack and in the current locals scope - custom format specifiers for lists:
:nto remove surrounding brackets,:c/:ncto use,as a separator instead of,:l/:nlto use\nas a separator,:?sto format as an escaped quoted string,:sto format as a quoted string
formatcan use format specifiers for integers:b,#b,B,#B,c,d,o,x,#x,X, and#Xif the argument is an integer- display a warning to
stderrwhen using a deprecated function/value (checks for@deprecatedinside the attached comment of functions / values)
Changed
pop!can return the removed value@=and@@=return the inserted valueappend!andconcat!return the modified listlet,mutandsetcan return the assigned value- fix formatter: when the condition of a
whileloop is on multiple lines, add the right amount of indentation before it