Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 830 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 830 Bytes

Go Microphage

A war has been raging underground for a long time now. The Microbes and Immune have been engaged in a bloody battle for control of the Human System. Choose your side, taste victory!

Usage

  1. supply the files aiven.env and concluent.env. See sample-env.
  2. go run *.go

Notes

Best Practices

  • When doing concurency with Goroutines, explicitly define Wait Groups and add your goroutines to them, then let your main function wait on this waitgroup. Otherwise, you might spend time wondering why your goroutines are not executing...because your main quits and closes all goroutines it spurn.