+ All Categories
Home > Technology > Elm functional programming in your browser

Elm functional programming in your browser

Date post: 15-Apr-2017
Category:
Upload: alex-troush
View: 176 times
Download: 0 times
Share this document with a friend
26
Elm: functional programming in your browser Alex Troush
Transcript

Elm: functional programming in your browser

Alex Troush

DisclaimerTrolling is a part of show and not (mostly!) reflect the opinion of the author

Function Concepts you need to know nowImmutable data

First-class functions

Pure Functions

Recursion

Elm hello worldimport Html exposing (span, text)import Html.Attributes exposing (class)

main = span [class "welcome-message"] [text "Hello, World!"]

Html AS a FUNCTIONma

Types

Types

Types

Elm Architecture

MODEL -> UPDATE -> VIEW

1 billion dollar application

GIF LOADING APPCats

model

VIEW

UPDATE

Adding cool stuff

UPDATE

HTTP STUFF

Tooling

ELM SEXY ERROR MESSAGESfoo = List.nap

Elm elm elm

Thank you all! Follow me @troush69


Recommended