Merge pull request #82 from fbnfgc/patch-1

Fix(24): add main function
This commit is contained in:
Teiva Harsanyi 2024-03-06 13:19:33 +01:00 committed by GitHub
commit f786563cd3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,3 +21,8 @@ func correct() {
_ = src
_ = dst
}
func main() {
bad()
correct()
}