This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main exposing (..) | |
import Browser | |
import Html exposing (Html, button, div, h1, input, span, text) | |
import Html.Attributes exposing (..) | |
import Html.Events exposing (onClick, onInput) | |
import Payments | |
import Random | |
-- MAIN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module HelloWorld | |
import StdEnv | |
import StdPointer | |
:: Value = Nothing | |
| Boxed_Bool !Bool | |
| Boxed_Char !Char | |
| Boxed_Int !Int | |
| Boxed_Real !Real |