https://github.com/dippynark/kubepf-ui
Elm frontend for kubepf
https://github.com/dippynark/kubepf-ui
Last synced: over 1 year ago
JSON representation
Elm frontend for kubepf
- Host: GitHub
- URL: https://github.com/dippynark/kubepf-ui
- Owner: dippynark
- Created: 2018-05-13T18:32:42.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-13T22:44:33.000Z (about 8 years ago)
- Last Synced: 2025-01-23T12:11:35.088Z (over 1 year ago)
- Language: Elm
- Size: 2.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Elm
## Initialise
- elm package install --yes elm-lang/core
- elm package install --yes elm-lang/html
## Running
- cd ~/go/src/github.com/auth0-blog/nodejs-jwt-authentication-sample; node server.js
## Types:
```
divide x y = x / y
divide x = \y -> x / y
divide = \x -> (\y -> x / y)
divide 3 2
(divide 3) 2
((\x -> (\y -> x / y)) 3) 2
(\y -> 3 / y) 2
3/2
1.5
```