From b82dac2adb1c031ba9d8800e30251c7e22743b3a Mon Sep 17 00:00:00 2001 From: Reza Behzadan Date: Sun, 31 Mar 2024 11:23:42 +0330 Subject: [PATCH] Initial release --- .gitignore | 33 +++++++++++++++++++++++++++++++++ LICENSE | 22 ++++++++++++++++++++++ Makefile | 14 ++++++++++++++ README.md | 0 go.mod | 3 +++ main.go | 14 ++++++++++++++ main_test.go | 14 ++++++++++++++ 7 files changed, 100 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 Makefile create mode 100644 README.md create mode 100644 go.mod create mode 100644 main.go create mode 100644 main_test.go diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..71b4967 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work + +# By Reza +build/ +dist/ +.archive/ +.vagrant/ +.env +*_[0-9] +*_[0-9][0-9] +*_????-??-?? +*.zip + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ba6bb4b --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +Copyright (c) 2024, Reza Behzadan + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions, and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions, and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. The name of "Reza Behzadan" may not be used to endorse or promote products derived from this software without specific prior written permission. + +4. Modified versions of the software must be distributed under the same terms and conditions of this license, and the original name of "Reza Behzadan" must be credited as the original developer in any significant portions of the redistributed or modified code. + +5. The software, including any modified versions, must not be used, directly or indirectly, in any type of military project or in any project that may cause harm to any human being. + +6. The software, including any modified versions, must not be used, directly or indirectly, by any individual, organization, or entity involved in or supporting oppressive, totalitarian regimes, or in any project that supports such regimes or contributes to human rights violations. This includes, but is not limited to, entities known for systematic oppression, cruelty, and use of violence against defenseless individuals, or for supporting terrorism. + + +DISCLAIMER: + +THIS SOFTWARE IS PROVIDED BY REZA BEHZADAN "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL REZA BEHZADAN BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b1aa2f2 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +.PHONY: build test package + +build: + go build -o hello-world main.go + +test: + go test -v ./... + +package: + zip hello-world.zip hello-world + +clean: + rm -f hello-world hello-world.zip + diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..0c111d1 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module hello + +go 1.22.1 diff --git a/main.go b/main.go new file mode 100644 index 0000000..73bc596 --- /dev/null +++ b/main.go @@ -0,0 +1,14 @@ +// main.go + +package main + +import "fmt" + +// Greet returns a greeting message. +func Greet(name string) string { + return "Hello, " + name + "!" +} + +func main() { + fmt.Println(Greet("World")) +} diff --git a/main_test.go b/main_test.go new file mode 100644 index 0000000..fa527db --- /dev/null +++ b/main_test.go @@ -0,0 +1,14 @@ +// main_test.go + +package main + +import "testing" + +func TestGreet(t *testing.T) { + result := Greet("Go") + expected := "Hello, Go!" + + if result != expected { + t.Errorf("Greet was incorrect, got: %s, want: %s.", result, expected) + } +}