Update Readme

Add Helloworld in elm
This commit is contained in:
mory91
2018-10-07 13:47:45 +03:30
parent 4da95e9a22
commit f5dcc299dc
2 changed files with 12 additions and 0 deletions

7
code/hello.elm Normal file
View File

@@ -0,0 +1,7 @@
module Hello exposing (..)
import Html exposing (text)
main =
text "Hello World!"