Skip to content

Instantly share code, notes, and snippets.

View bwoff11's full-sized avatar

Brandon bwoff11

View GitHub Profile
@bwoff11
bwoff11 / main.go
Created October 9, 2022 23:11
golang fizzbuzz
package main
import "fmt"
var itterations int = 999
func main() {
for i := 0; i < itterations; i++ {
var toPrint string
if i%3 == 0 {