generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPROJECT_LANG_1.hs
18 lines (14 loc) · 1.14 KB
/
PROJECT_LANG_1.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- Start of script
module Main (main) where -- not needed in interpreter, is the default in a module file
main :: IO () -- the compiler can infer this type definition
main = putStrLn "Project language file 1\nFor: seanpm2001/Firefox-version-number-fix\nAbout:\nI chose Haskell as the first project language file for this project (seanpm2001/Firefox-version-number-fix) as I haven't used Haskell in a while, and due to its pointers and syntax, I thought it would be a good fit for this project. It is getting its own project language file, starting here"
-- Output:
-- Project language file 1
-- For: seanpm2001/Firefox-version-number-fix
-- About:
-- I chose Haskell as the first project language file for this project (seanpm2001/Firefox-version-number-fix) as I haven't used Haskell in a while, and due to its pointers and syntax, I thought it would be a good fit for this project. It is getting its own project language file, starting here
-- File info
-- File version: 1 (2022, Saturday, July 30th at 4:12 pm PST)
-- File type: Haskell source file (*.hs)
-- Line count (including blank lines and compiler line): 19
-- End of script