Created
October 2, 2017 00:16
-
-
Save anonymous/d9aa20e9f85a01f742411d56c0e6064f to your computer and use it in GitHub Desktop.
pipeline
This file contains hidden or 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
{ | |
"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" | |
} | |
} |
This file contains hidden or 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
<html> | |
<head> | |
<style> | |
html { | |
background: #F7F7F7; | |
color: red; | |
} | |
</style> | |
</head> | |
<body> | |
<script> | |
var app = Elm.Main.fullscreen() | |
</script> | |
</body> | |
</html> |
This file contains hidden or 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 (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