name: Is it prime?
(}.:*$%
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
;)\h
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
qu_"ij.;!?::"RR
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}k&bth
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
"
 `~!@#$%^&*()_-+={[}]\|'\";:,<.>/?" "\n" mpeek len ord sum
output: 34
2128


name: auto input no ops test

input: 1,2
output:

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: empty input
show "\n" $ type
output: []
[]

name: nearly empty input
show
input: \n
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: implicit set, no input
5> +*
output: 50

name: implicit set, input present
5> +*
input: 2
output: 35

name: implicit set, $
5> $
output: 55

name: implicit set, $, input
5>+++$
input: 100
output: 210

name: implicit used in main
5++
input: 100
output: 205

name: implicit used in fn
3;+ a
output: 6
3\n

name: implicit used in fn with input present
3*;+ a
input: 5
output: 30
15\n

name: $ is implicit in main used in fn with no input
$ 3;+ a
output: 6
3\n

name: implicit value used before set
* 5>+
output: 30

name: implicit set with >,
5 countTo meld + ) >, $
output: 1616

name: input op
input
input: 5
output: 5

name: implicit op
implicit
input: 5
output: 5

