From 8750a7a78c8ff50f5304084251e5611928a587ea Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Fri, 23 Dec 2016 19:43:01 +0000 Subject: [PATCH] Better naming of source files --- adventofcode1601/adventofcode1601.cabal | 2 +- adventofcode1601/app/{Main.hs => advent01.hs} | 0 adventofcode1602/adventofcode1602.cabal | 2 +- adventofcode1602/app/{Main.hs => advent02.hs} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename adventofcode1601/app/{Main.hs => advent01.hs} (100%) rename adventofcode1602/app/{Main.hs => advent02.hs} (100%) diff --git a/adventofcode1601/adventofcode1601.cabal b/adventofcode1601/adventofcode1601.cabal index a152de7..3c5289a 100644 --- a/adventofcode1601/adventofcode1601.cabal +++ b/adventofcode1601/adventofcode1601.cabal @@ -20,7 +20,7 @@ library executable advent01 hs-source-dirs: app - main-is: Main.hs + main-is: advent01.hs ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N build-depends: base , adventofcode1601 diff --git a/adventofcode1601/app/Main.hs b/adventofcode1601/app/advent01.hs similarity index 100% rename from adventofcode1601/app/Main.hs rename to adventofcode1601/app/advent01.hs diff --git a/adventofcode1602/adventofcode1602.cabal b/adventofcode1602/adventofcode1602.cabal index 1e4aa7d..ca22935 100644 --- a/adventofcode1602/adventofcode1602.cabal +++ b/adventofcode1602/adventofcode1602.cabal @@ -20,7 +20,7 @@ library executable advent02 hs-source-dirs: app - main-is: Main.hs + main-is: advent02.hs ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N build-depends: base , adventofcode1602 diff --git a/adventofcode1602/app/Main.hs b/adventofcode1602/app/advent02.hs similarity index 100% rename from adventofcode1602/app/Main.hs rename to adventofcode1602/app/advent02.hs -- 2.34.1