Nothing Yet!
- Add
getenv("NAME", "default value")
function to get environment variable - Add
strlen(text)
function to get text bytes length:strlen("你好")
to6
- Fix
substr(s,index,len)
: 0 and negative index support now and same with gawk.
- Fix
_join
with wrong sequence
- Add
chars($1)
function to return char array of text - Use fs if sep empty in
split(text,arr,sep)
- Add
eval(formula, context)
function for math calculation - Add Resend mail service support for
send_mail()
, and environment variable isRESEND_API_KEY
. - Documentation to make associative array quickly:
array[$1] = $2
,arr = record("{host:localhost,port:1234}")
,arr = pairs("a=b,c=d")
.
- Add
smtp_send(url, from, to, subject, body)
function to send email - Add MQTT support:
publish("mqtt://servername:1883/topic", body)
- Add
system2(cmd)
: different fromsystem(cmd)
, and it will return an array withcode
,stdout
,stderr
. - Add
cargo-binstall
andcargo-dist
support