Skip to content

Commit b7da837

Browse files
authored
the conversion is done automaticly by JS
1 parent aefa9ea commit b7da837

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

jive/ji.html

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,7 @@
1212
} else if (code[p] in num) { s.push(Number(code[p]))
1313
} else if (code[p] == "↑") { out += "["+s+"]"
1414
} 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
15+
} else if (code[p] == "!") { s.push(fact(s.pop())) }
2216
p++
2317
}
2418
//output the out variable

0 commit comments

Comments
 (0)