Skip to content

Instantly share code, notes, and snippets.

View Ikechukwunwachukwu's full-sized avatar

Nwankwo Ikechukwunwachukwu

View GitHub Profile
@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 =
@Ikechukwunwachukwu
Ikechukwunwachukwu / Main.elm
Created December 3, 2023 20:55 — forked from mfonism/Main.elm
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

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

PREV: Conditionals Ninjery


Types and Values Ninjery!

A series of exercises for getting familiar with types and their possible values.

Considerations for the exercises:

PREV: Types and Values Ninjery!


Map it like it's hot!

This batch of exercises is designed to enhance your understanding of mapping in Elm. Mapping is a fundamental concept in functional programming that allows you to transform lists by applying a function to each element in the list. These exercises will provide you with practical scenarios to apply this concept, reinforcing your ability to manipulate and process data efficiently in Elm.

Instructions