9 lines
101 B
Bash
9 lines
101 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
$PICRIN <<'EOF'
|
||
|
(import (srfi 1))
|
||
|
(import (picrin repl))
|
||
|
(every = '(1 2 3) '(1 2 3))
|
||
|
|
||
|
EOF
|