diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-17 01:31:29 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-17 01:31:29 +0200 |
commit | dd8f119332149a4e3b02dfce79f221f585ca73e1 (patch) | |
tree | 6111a5dbe3d5a6622293503bd206c286d9ca57d9 /src | |
parent | Add gitignore (diff) | |
download | isspass-dd8f119332149a4e3b02dfce79f221f585ca73e1.tar.gz isspass-dd8f119332149a4e3b02dfce79f221f585ca73e1.tar.bz2 isspass-dd8f119332149a4e3b02dfce79f221f585ca73e1.zip |
Setup nix declarative elm project
Diffstat (limited to 'src')
-rw-r--r-- | src/Main.elm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Main.elm b/src/Main.elm new file mode 100644 index 0000000..f493a54 --- /dev/null +++ b/src/Main.elm @@ -0,0 +1,7 @@ +module Main exposing (..) + +import Html exposing (text) + +-- create main method +main = + text "Hello Elm from TutorialsPoint" |