From a68d31e59a6b9188fd48f0e96eef4cf78605bc7e Mon Sep 17 00:00:00 2001 From: Sagar Damani Date: Mon, 8 May 2017 23:09:05 -0400 Subject: [PATCH] Updated helloworld with pointer change --- helloworld.grid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloworld.grid b/helloworld.grid index b823882..1800b09 100644 --- a/helloworld.grid +++ b/helloworld.grid @@ -28,7 +28,7 @@ int initialSetup(){ int gameloop(){ Player p1; - *Player p2; + Player* p2; p1.name = "Hello World"; print(p1.name); return 0;