From c66bcff0a332de01190d279ef051300bd05cb582 Mon Sep 17 00:00:00 2001 From: Christopher Bertels Date: Sun, 29 Jan 2023 07:55:10 +0100 Subject: [PATCH] Use hello as app name for hello.roc example This is to prevent a name collision with breakout.roc example located in the same directory. --- examples/gui/breakout/hello.roc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/gui/breakout/hello.roc b/examples/gui/breakout/hello.roc index 0e05e50705..46143f6671 100644 --- a/examples/gui/breakout/hello.roc +++ b/examples/gui/breakout/hello.roc @@ -1,4 +1,4 @@ -app "breakout" +app "hello" packages { pf: "platform/main.roc" } imports [pf.Game.{ Bounds, Elem, Event }] provides [program] { Model } to pf