Skip to content

Instantly share code, notes, and snippets.

@pachun
Created December 8, 2022 10:03
Show Gist options
  • Save pachun/1def1dbef34f87527ec1344445a3f076 to your computer and use it in GitHub Desktop.
Save pachun/1def1dbef34f87527ec1344445a3f076 to your computer and use it in GitHub Desktop.
module Lolcode exposing (main)
import Browser
import Html exposing (..)
type alias Model =
{}
type Msg
= NoOp
init : Model
init =
{}
update : Msg -> Model -> Model
update msg model =
case msg of
NoOp ->
model
view : Model -> Html Msg
view model =
text "hello"
main : Program () Model Msg
main =
Browser.sandbox
{ init = init
, update = update
, view = view
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment