Skip to content

Commit 6aa6062

Browse files
authored
PROJECT_LANG_1.hs [V1]
Version 1 of the first project language file for this project.
1 parent 266ba08 commit 6aa6062

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

PROJECT_LANG_1.hs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
-- Start of script
2+
3+
module Main (main) where -- not needed in interpreter, is the default in a module file
4+
5+
main :: IO () -- the compiler can infer this type definition
6+
main = putStrLn "Project language file 1\nFor: SNU/2D/ProgrammingTools/IDE/Haskell\nAbout:\nI decided to make Haskell the main project language file for this project (SNU / 2D / Programming Tools / IDE / Haskell) as this is a Haskell IDE, and it needs its main language to be represented here."
7+
8+
-- Output
9+
10+
-- Project language file 1
11+
-- For: SNU/2D/ProgrammingTools/IDE/Haskell
12+
-- About:
13+
-- I decided to make Haskell the main project language file for this project (SNU / 2D / Programming Tools / IDE / Haskell) as this is a Haskell IDE, and it needs its main language to be represented here.
14+
15+
-- File info
16+
-- File version: 1 (2022, Friday, September 30th at 4:37 pm PST)
17+
-- File type: Haskell script file (*.hs)
18+
-- Line count (including blank lines and compiler line): 21
19+
20+
-- End of script

0 commit comments

Comments
 (0)