| Hosted by CoCalc | Download
Kernel: Haskell
9+9+1
19
putStr "asdf"
asdf
import System.Info do print os print arch print compilerName print compilerVersion
"linux" "x86_64" "ghc" Version {versionBranch = [8,4], versionTags = []}
putStr "asdf"
asdf
take 20 (iterate (\x -> (x+2) * 2) 1)
[1,6,16,36,76,156,316,636,1276,2556,5116,10236,20476,40956,81916,163836,327676,655356,1310716,2621436]