From e6076230b0a2fc3f35169250802ab2160e11d16f Mon Sep 17 00:00:00 2001 From: Jonathan Lamothe Date: Tue, 20 Aug 2024 18:58:05 -0400 Subject: [PATCH] added AGPL notice & removed dependency on `Lib` module --- README.md | 21 +++++++++++++++++++++ app/Main.hs | 28 +++++++++++++++++++++++++--- 2 files changed, 46 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 37e5ae4..c75e398 100644 --- a/README.md +++ b/README.md @@ -1 +1,22 @@ # abacus + +Copyright (C) Jonathan Lamothe + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3 of the +License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public +License along with this program. If not, see +. + +## Important Note + +Ths program is not yet ready for release and should be considered +subject to change at any time. diff --git a/app/Main.hs b/app/Main.hs index 4c6b30f..c88f25e 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -1,6 +1,28 @@ +{- + +# abacus + +Copyright (C) Jonathan Lamothe + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3 of the +License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public +License along with this program. If not, see +. + +-} + module Main (main) where -import Lib - main :: IO () -main = someFunc +main = return () + +--jl