generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPROJECT_LANG_1.purs
20 lines (17 loc) · 1.14 KB
/
PROJECT_LANG_1.purs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- Start of script
module Main where
import Prelude
import Effect (Effect)
import Effect.Console (log)
-- Project language 1
-- For: FloweredNotch
-- About:
-- I decided to make PureScript the first main project language file for this project (FloweredNotch) as I wanted to have a little challenge. I am sure Notch decorations can be done in PureScript/JavaScript. I had to distinguish this projects functionality from MalNotch, as so the two are separate and safe. It is getting its own project language file, starting here.
main :: Effect Unit
main = log "Project language 1\nFor: FloweredNotch\nAbout:\nI decided to make PureScript the first main project language file for this project (FloweredNotch) as I wanted to have a little challenge. I am sure Notch decorations can be done in PureScript/JavaScript. I had to distinguish this projects functionality from MalNotch, as so the two are separate and safe. It is getting its own project language file, starting here."
{- File info
File type: PureScript source file (*.purs)
File version: 1 (2022, Saturday, June 25th at 4:41 pm PST)
Line count (including blank lines and compiler line): 21
}-
-- End of script