Skip to content

Instantly share code, notes, and snippets.

@3kezoh
3kezoh / average.elm
Created February 12, 2023 21:11
An elm program that calculates the average of input numbers separated by spaces
module Main exposing (..)
import Browser
import Html exposing (Html, div, input, text)
import Html.Attributes exposing (type_, value)
import Html.Events exposing (onInput)
-- MAIN