Skip to content

Commit

Permalink
fix: Fix solution as per review
Browse files Browse the repository at this point in the history
  • Loading branch information
eslopfer authored and davhojt committed Jul 14, 2022
1 parent bc55941 commit 766b00e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solutions/printevenarguments/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

func main() {
if len(os.Args) < 2 {
if len(os.Args) <= 2 {
fmt.Println()
return
}
Expand Down

0 comments on commit 766b00e

Please sign in to comment.