start new:
tmux
start new with session name:
tmux new -s myname
module Main | |
%default total | |
data Format | |
= FInt -- %d | |
| FString -- %s | |
| FOther Char -- [a-zA-Z0-9] | |
format : List Char -> List Format |
fibs = 0 : 1 : zipWith (+) fibs (tail fibs) |