Skip to content

lue-bird/who-leighed-the-hay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Goal is creating a typechecking

main =
  state 0 <| \count setCount ->
    state "" <| \message setMessage ->
      render <| \model ->
        Html.div []
          [ Html.button [ Html.Events.onClick <| setCount <| (count model) + 1 ] [ Html.text "+" ]
          , Html.p [] [ Html.text <| String.fromInt <| count model ]
          , Html.input [ Html.Attributes.value (message model), Html.Events.onInput setMessage ] []
          ]

I claim that I got it. My solution can run snippets that look exactly like above and can be found in src/FinalSolutionIdenticalToRequest.elm

To run:

elm reactor

then click on src/FinalSolutionIdenticalToRequest.elm or some other file:

  • my original solution: src/FinalSolution.elm
  • a better, simplified attempt: src/FinalSolutionSimplified.elm
  • a version that converts any of these functions into runnable elm programs: src/FinalSolutionSimplifiedAbstracted.elm
  • a version that additionally uses tuples instead of records for get,set: src/FinalSolutionSimplifiedAbstractedWithTuples.elm
  • a version that additionally uses 2 arguments instead of records for get,set: src/FinalSolutionSimplifiedAbstractedWithArguments.elm

About

thank u hayleigh

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages