Post History
Vyxal D, 26 bytes 0Ȯ(n«ƛ√J«`›‹²…`ĿĖD₈=$0<∨[0 Try it Online! 0 # Push 0 Ȯ(n # Iterating over the input «ƛ√J«`›‹²…`Ŀ # Translit...
Answer
#2: Post edited
- # [Vyxal](https://github.com/Vyxal/Vyxal) `D`, 26 bytes
- ```
- 0Ȯ(n«ƛ√J«`›‹²…`ĿĖD₈=$0<∨[0
- ```
- [Try it Online!](https://lyxal.pythonanywhere.com?flags=D&code=0%C8%AE%28n%C2%AB%C6%9B%E2%88%9AJ%C2%AB%60%E2%80%BA%E2%80%B9%C2%B2%E2%80%A6%60%C4%BF%C4%96D%E2%82%88%3D%240%3C%E2%88%A8%5B0&inputs=iissso&header=&footer=)
- ```
- 0 # Push 0
- Ȯ(n # Iterating over the input
«ƛ√J«`›‹²…`Ŀ # Transliterate into appropriate Vyxal instruction.Ė # If 256 or negativeD₈=$0<∨[- 0 # Push 0
- ```
- # [Vyxal](https://github.com/Vyxal/Vyxal) `D`, 26 bytes
- ```
- 0Ȯ(n«ƛ√J«`›‹²…`ĿĖD₈=$0<∨[0
- ```
- [Try it Online!](https://lyxal.pythonanywhere.com?flags=D&code=0%C8%AE%28n%C2%AB%C6%9B%E2%88%9AJ%C2%AB%60%E2%80%BA%E2%80%B9%C2%B2%E2%80%A6%60%C4%BF%C4%96D%E2%82%88%3D%240%3C%E2%88%A8%5B0&inputs=iissso&header=&footer=)
- ```
- 0 # Push 0
- Ȯ(n # Iterating over the input
- «ƛ√J«`›‹²…`Ŀ # Transliterate into appropriate Vyxal instruction
- Ė # Evaluate
- D₈=$0<∨[ # If 256 or negative
- 0 # Push 0
- ```
#1: Initial revision
# [Vyxal](https://github.com/Vyxal/Vyxal) `D`, 26 bytes ``` 0Ȯ(n«ƛ√J«`›‹²…`ĿĖD₈=$0<∨[0 ``` [Try it Online!](https://lyxal.pythonanywhere.com?flags=D&code=0%C8%AE%28n%C2%AB%C6%9B%E2%88%9AJ%C2%AB%60%E2%80%BA%E2%80%B9%C2%B2%E2%80%A6%60%C4%BF%C4%96D%E2%82%88%3D%240%3C%E2%88%A8%5B0&inputs=iissso&header=&footer=) ``` 0 # Push 0 Ȯ(n # Iterating over the input «ƛ√J«`›‹²…`Ŀ # Transliterate into appropriate Vyxal instruction. Ė # If 256 or negative D₈=$0<∨[ 0 # Push 0 ```