Remove unnecessary package

This commit is contained in:
Gabriel Augendre 2023-03-15 17:11:00 +01:00
parent b39fee2be7
commit 0221dafe57
3 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,4 @@
package lib package main
func CheckGuess(guess, random int) (string, bool) { func CheckGuess(guess, random int) (string, bool) {
if guess == random { if guess == random {

View file

@ -1,4 +1,4 @@
package lib package main
import ( import (
"testing" "testing"

1
main.go Normal file
View file

@ -0,0 +1 @@
package main