Skip to content

Instantly share code, notes, and snippets.

Created October 2, 2017 00:16
Show Gist options
  • Save anonymous/d9aa20e9f85a01f742411d56c0e6064f to your computer and use it in GitHub Desktop.
Save anonymous/d9aa20e9f85a01f742411d56c0e6064f to your computer and use it in GitHub Desktop.
pipeline
{
"repository": "https://github.com/user/project.git",
"version": "1.0.0",
"elm-version": "0.18.0 <= v < 1.0.0",
"summary": "My first Ellie project.",
"license": "BSD3",
"source-directories": [
"."
],
"exposed-modules": [],
"native-modules": false,
"dependencies": {
"elm-lang/core": "5.1.1 <= v < 6.0.0",
"elm-lang/html": "2.0.0 <= v < 3.0.0"
}
}
<html>
<head>
<style>
html {
background: #F7F7F7;
color: red;
}
</style>
</head>
<body>
<script>
var app = Elm.Main.fullscreen()
</script>
</body>
</html>
module Main exposing (main)
import Html exposing (Html, text)
a =
[ 28, 6, 34, -99 ]
main : Html msg
main =
a
|> List.sort
|> List.reverse
|> List.reverse
|> toString
|> Html.text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment