32
edits
Changes
Team Go
,no edit summary
Go supports concurrency through '''Goroutines''' and '''Channels'''
== Goroutines ==
A goroutine is a function capable of running concurrently with other functions. They're similar to threads except they're much cheaper and are managed automatically.