Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Update KRL code

...

Code Block
languagejavascript
a = ('"K'").ord(); // a: 75
b = ('"Kite'").ord(); // b: 75
c = ('"Kite'").split(re##).map(function(x){x.ord()}); // c: [75,105,116,101]
d = ('"K'").ord().chr() eq== '"K'" // d: true

The inverse of ord() is chr().

...