We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aefa9ea commit b7da837Copy full SHA for b7da837
jive/ji.html
@@ -12,13 +12,7 @@
12
} else if (code[p] in num) { s.push(Number(code[p]))
13
} else if (code[p] == "↑") { out += "["+s+"]"
14
} else if (code[p] == "[") { while (code[p] !== "]") {p++}
15
- } else if (code[p] == "!") { s.push(fact(s.pop()))
16
- //this is gonna be fun
17
- } else if (code[p] == "`") {
18
- if (code[p+1]==",") { s.push(Number(s.pop())) ; p++ }
19
- if (code[p+1]==".") { s.push(parseFloat(s.pop())) ; p++ }
20
- if (code[p+1]=="\"") { s.push(String(s.pop())) ; p++ }
21
- } //nevermind
+ } else if (code[p] == "!") { s.push(fact(s.pop())) }
22
p++
23
}
24
//output the out variable
0 commit comments