Skip to content

Instantly share code, notes, and snippets.

View tblancbeyne's full-sized avatar

Thibault Blanc-Beyne tblancbeyne

View GitHub Profile
@tblancbeyne
tblancbeyne / main.elm
Created July 27, 2017 13:18
Première tentative de programmation fonctionnelle : decomposition en facteurs premiers
import Html exposing (Html, button, div, text)
import Html.Events exposing (onClick)
main =
Html.beginnerProgram { model = model, view = view, update = update }
type alias Model =
{ nbr : Int
, dec : List Int
}