This commit is contained in:
Thorn Avery 2024-06-29 13:34:34 +12:00
parent 01b6f2d9de
commit 81ae1703f0
2 changed files with 25 additions and 0 deletions

21
hello-world.cabal Normal file
View file

@ -0,0 +1,21 @@
cabal-version: 1.12
name: hello-world
version: 0.0.0.1
license: MIT
build-type: Simple
synopsis: example application
description: an example application to test this repo's CI
author: Thorn Avery
maintainer: ta@p7.co.nz
executable hello-world
main-is: Main.hs
hs-source-dirs:
src
build-depends:
base
, universe
default-language: Haskell2010

4
src/Main.hs Normal file
View file

@ -0,0 +1,4 @@
import Universe.World (world)
main :: IO ()
main = putStrLn ("Helo " ++ world ++ "!!!")