Initial release
This commit is contained in:
commit
b82dac2adb
33
.gitignore
vendored
Normal file
33
.gitignore
vendored
Normal file
@ -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
|
||||
|
22
LICENSE
Normal file
22
LICENSE
Normal file
@ -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.
|
||||
|
||||
|
14
Makefile
Normal file
14
Makefile
Normal file
@ -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
|
||||
|
14
main.go
Normal file
14
main.go
Normal file
@ -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"))
|
||||
}
|
14
main_test.go
Normal file
14
main_test.go
Normal file
@ -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)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user