summaryrefslogtreecommitdiff
path: root/src/Main/Charsheet.purs
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-02-17 05:21:03 -0500
committerLLLL Colonq <llll@colonq>2026-02-17 05:21:03 -0500
commitc45a68362c2f64781458f74309a235af8393255a (patch)
treef946a84f20c69e59a118121ff2eb7827d3cc6645 /src/Main/Charsheet.purs
parente16ce1e5dbc6f0b1534abbbc774f4709c9804997 (diff)
Update
Diffstat (limited to 'src/Main/Charsheet.purs')
-rw-r--r--src/Main/Charsheet.purs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Main/Charsheet.purs b/src/Main/Charsheet.purs
new file mode 100644
index 0000000..5e061aa
--- /dev/null
+++ b/src/Main/Charsheet.purs
@@ -0,0 +1,12 @@
+module Main.Charsheet where
+
+import Prelude
+
+import Effect (Effect)
+import Effect.Aff (launchAff_)
+import Effect.Class (liftEffect)
+import Effect.Console (log)
+
+main :: Effect Unit
+main = launchAff_ do
+ liftEffect $ log "hello from charsheet"