Skip to content

Instantly share code, notes, and snippets.

View Ikechukwunwachukwu's full-sized avatar

Nwankwo Ikechukwunwachukwu

View GitHub Profile
@mfonism
mfonism / Main.elm
Last active January 18, 2024 07:07
Basic skeleton of an Elm sandbox application
module Main exposing (main)
import Browser
import Html exposing (Html, text)
main : Program () Model Msg
main =
Browser.sandbox
{ init = myInit
@mfonism
mfonism / karlverter.elm
Created November 5, 2023 15:54
Temperature converter (ELM)
module Main exposing (main)
import Browser
import Html exposing (Html, div, h1, input, label, text)
import Html.Attributes exposing (value)
import Html.Events exposing (onInput)
main : Program () Model Msg
main =
@Ikechukwunwachukwu
Ikechukwunwachukwu / karlverter.elm
Created December 3, 2023 20:23 — forked from mfonism/karlverter.elm
Temperature converter (ELM)
module Main exposing (main)
import Browser
import Html exposing (Html, div, h1, input, label, text)
import Html.Attributes exposing (value)
import Html.Events exposing (onInput)
main : Program () Model Msg
main =

PREV: Type Ninjery


Conditionals Ninjery!

A series of exercises with unique tasks for playing around with the basic Elm types we've come across so far, and getting more familiar with conditional logic.

Implementation Guidelines

@mfonism
mfonism / 2024.02.11--types-and-values-ninjery.md
Last active April 12, 2024 18:53
Elm Homework for Friends at Hamelin