Sha256: 4d46989ad2f6627db27f2c6382536c0398055fe0dbb2fabeee617792659c2822
Contents?: true
Size: 472 Bytes
Versions: 10
Compression:
Stored size: 472 Bytes
Contents
For Agda 2.6.2, based on its [https://agda.readthedocs.io/en/v2.6.2/getting-started/hello-world.html documentation]. module helloworld where open import Agda.Builtin.IO using (IO) open import Agda.Builtin.Unit renaming (⊤ to Unit) open import Agda.Builtin.String using (String) postulate putStrLn : String -> IO Unit {-# FOREIGN GHC import qualified Data.Text as T #-} {-# COMPILE GHC putStrLn = putStrLn . T.unpack #-} main : IO Unit main = putStrLn "Hello world!"
Version data entries
10 entries across 7 versions & 1 rubygems