Skip to content

Commit

Permalink
Copy hello-world/
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCVanB committed Feb 1, 2022
1 parent 17f3c50 commit c17c893
Show file tree
Hide file tree
Showing 12 changed files with 3,291 additions and 0 deletions.
1 change: 1 addition & 0 deletions breakout/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
game
2 changes: 2 additions & 0 deletions breakout/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
./roc/target/release/roc build ./hello-world/game.roc
2 changes: 2 additions & 0 deletions breakout/build_and_run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
./roc/target/release/roc ./hello-world/game.roc
6 changes: 6 additions & 0 deletions breakout/game.roc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
app "game"
packages { pf: "platform" }
imports []
provides [ greeting ] to pf

greeting = "Hello, World!"
Loading

0 comments on commit c17c893

Please sign in to comment.