name: Is it prime?
(}P:*$%
input: 5 4 1 2
output: 1\n0\n0\n1\n

name: Find the Missing Letter
# by UnrelatedString https://codegolf.stackexchange.com/questions/132771/find-the-missing-letter/276360#276360
;)xh
input: abcdfg
output: e

name: Count the dots
# https://codegolf.stackexchange.com/questions/276019/how-many-dots-are-there/276412?r=SearchResults&s=3%7C17.5841#276412
r=u#"ij.;!?::
input: Sphinx of black quartz, judge my vow!
Lorem ipsum: dolor sit amet?
Programming Puzzles & Code Golf
ij.;!?:

pericardiomediastinitis
formaldehydesulphoxylate
output: 3\n5\n1\n8\n0\n6\n0\n

name: Running second maximum
# by UnrelatedString https://codegolf.stackexchange.com/questions/138510/running-second-maximum-of-a-list/276362#276362
l}ksbth
input: 1 5 2 3 5 9 5 8
output: 0\n1\n2\n3\n5\n5\n5\n8\n

name: Int output test
1 2 3,4 1,2,,3,4 1,2,,3,4,,,1,2,,3,4
output: 123
4
1 2
3 4
1 2
3 4

1 2
3 4\n\n

name: Char output test
'a'b 'c"def""hjk""xyz","123" "ab","cd",,"ef","g"
output: abcdefhjkxyz
123
ab cd
ef g\n

name: raw input mode
> show
input: 1 2
output: ["1 2"]

name: all symbols
"
 `~!@#$%^&*()_-+={[}]\|'\";:,<.>/?"; ord sum show "\n"a> len show
output: 2128
34

name: auto input no ops test

input: 1,2
output: 1\n2\n

name: nil type output
nil nil J nil Cons
output: \n\n

name: auto input1
show
input: 1  2
output: "1  2"

name: auto input2
show
input: 1-2
output: "1-2"

name: auto input3
show
input: 1 -2
output: [1,-2]

name: auto input4
show
input: 1 --2
output: "1 --2"

name: auto input5
show
output: ""

name: auto input6
show
input: ,
output: ","

name: auto input7
show
input: 1\n\n2
output: [[1],[],[2]]

name: auto input8
show
input: 1\n\n
output: [[1],[]]

name: auto input9
show
input: 1,2,
output: [1,2]

name: auto input10
show
input: \n
output: ""

name: @ empty input
5@+
output: 10

name: @ nearly empty input
5@+
input: \n
output:
