🚀 add new native function char

This commit is contained in:
ValKmjolnir
2022-11-12 17:03:56 +08:00
parent a3ce6a1824
commit 5821c40cb4
6 changed files with 71 additions and 13 deletions
+6
View File
@@ -183,6 +183,12 @@ var chr=func(code){
return __chr(code);
}
# char will give you the real character of ascii-number
# instead of extend-ascii when number between 128~256
var char=func(code){
return __char(code);
}
# mut is used to change unmutable strings to mutable.
var mut=func(str){
return str~"";