Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
parsonsmatt committed Oct 5, 2015
1 parent 0906d3d commit d02a3d8
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/bower_components/
/node_modules/
/output/
/.psci*
/src/.webpack.js
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# purs-architecture-tutorial
A port of the [Elm Architecture Tutorial](https://github.com/evancz/elm-architecture-tutorial/) to PureScript

A port of the [Elm Architecture Tutorial](https://github.com/evancz/elm-architecture-tutorial/) to PureScript.
16 changes: 16 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "purs-architecture-tutorial",
"version": "1.0.0",
"moduleType": [
"node"
],
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"output"
],
"dependencies": {
"purescript-console": "^0.1.0"
}
}
6 changes: 6 additions & 0 deletions src/Main.purs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module Main where

import Control.Monad.Eff.Console

main = do
log "Hello sailor!"
6 changes: 6 additions & 0 deletions test/Main.purs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module Test.Main where

import Control.Monad.Eff.Console

main = do
log "You should add some tests."

0 comments on commit d02a3d8

Please sign in to comment.