From f28b15cec1ae02987e56fd062a247da9b4f7d85f Mon Sep 17 00:00:00 2001 From: ilsix Date: Thu, 4 Apr 2024 22:57:49 +0200 Subject: [PATCH] Tested Go --- go/helloworld.go | 1 + go/test.sh | 3 +++ 2 files changed, 4 insertions(+) create mode 100755 go/test.sh diff --git a/go/helloworld.go b/go/helloworld.go index edea122..76f2989 100644 --- a/go/helloworld.go +++ b/go/helloworld.go @@ -1,3 +1,4 @@ +//compiles and runs successfully package main import "fmt" diff --git a/go/test.sh b/go/test.sh new file mode 100755 index 0000000..84bf272 --- /dev/null +++ b/go/test.sh @@ -0,0 +1,3 @@ +#!/bin/bash +go build helloworld.go +./helloworld \ No newline at end of file