[script] add 2 new operators

- Str : Int ->  works like py's [Int:]
- Str - Int -> subtracts x amount of characters from the end of the string
This commit is contained in:
suchmememanyskill
2020-12-31 21:20:48 +01:00
parent 95d4f2bbeb
commit a39b3b2460
3 changed files with 33 additions and 1 deletions

View File

@@ -39,6 +39,7 @@ lexarTranslation_t lexarTranslations[] = {
{'<', Smaller},
{'>', Bigger},
{'!', Not},
{':', Selector},
{')', RBracket},
{']', RSBracket},
{'(', LBracket},