start new:
tmux
start new with session name:
tmux new -s myname
| let slice = Array.prototype.slice; | |
| let str = s => slice.call(s) | |
| let unstr = cs => cs.reduce((c, cs) => c + cs, "") | |
| let concat = xss => xss.reduce((xs, ys) => xs.concat(ys), []) | |
| let id = x => x | |
| let negate = x => -x | |
| let add = (x,y) => x + y | |
| let sub = (x,y) => x - y | |
| // type Parser a = () -> [Char] -> a |