1 line
59 B
Haskell
1 line
59 B
Haskell
data IntList s = Nil | Cons Integer (STRef s (IntList s))
|
data IntList s = Nil | Cons Integer (STRef s (IntList s))
|