Created
April 18, 2019 20:24
-
-
Save yakuter/c6b65ab16226a81664efb3e5a1390984 to your computer and use it in GitHub Desktop.
İsimsiz Go Routine Örneği
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func main() { | |
go func() { | |
fmt.Println("Merhaba isimsiz dünya") | |
}() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment