Skip to content

Commit

Permalink
Blank string: S
Browse files Browse the repository at this point in the history
Related to #35
  • Loading branch information
phase committed Nov 18, 2015
1 parent 3417724 commit 537d111
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ In the format `HEX (char): use`. Things in bold need to be checked in the interp
* _44_ (`D`): Push 13
* _45_ (`E`): Push 14
* _46_ (`F`): Push 15
* _47_ (`G`):
* _47_ (`G`): Push alphabet
* _48_ (`H`): Macro for `[Q`
* _49_ (`I`): Macro for `[i`
* _4a_ (`J`): Magic var
Expand All @@ -54,7 +54,7 @@ In the format `HEX (char): use`. Things in bold need to be checked in the interp
* _50_ (`P`):
* _51_ (`Q`): Input var
* _52_ (`R`):
* _53_ (`S`):
* _53_ (`S`): Blank String
* _54_ (`T`):
* _55_ (`U`):
* _56_ (`V`): _Commonly used for variables_
Expand All @@ -76,12 +76,12 @@ In the format `HEX (char): use`. Things in bold need to be checked in the interp
* _66_ (`f`):
* _67_ (`g`):
* _68_ (`h`):
* _69_ (`i`):
* _6a_ (`j`):
* _69_ (`i`): String input
* _6a_ (`j`): Number input
* _6b_ (`k`):
* _6c_ (`l`): Push length of stack
* _6d_ (`m`): Math functions
* _6e_ (`n`):
* _6e_ (`n`): Used in for loops
* _6f_ (`o`): Print object
* _70_ (`p`): Print object with new line
* _71_ (`q`): **some test beta push input thingy**
Expand Down
1 change: 1 addition & 0 deletions o.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ S exc(C c){
case 'j':psh(st,newod(rdlnd()));BK; //read number
case 'l':psh(st,newod(len(st)));BK; //push length
case '~':eval(st);BK; //eval
case 'S':psh(st,newoskz(""));BK; //blank string
case '\'':pc=1;BK; //begin char
case '"':ps=1;psb=alc(1);BK; //begin string
case '{':pcb=1;pcbb=alc(1);cbi++;BK; //being codeblock
Expand Down

0 comments on commit 537d111

Please sign in to comment.