Skip to content

Instantly share code, notes, and snippets.

View taurpuns's full-sized avatar

Tailstrike taurpuns

View GitHub Profile
@taurpuns
taurpuns / metronome.go
Created February 7, 2019 07:28
A Metronome example, developed in Golang. Takes a bpm and count as input.
package main
import (
"fmt"
"log"
"os"
"strconv"
"time"
)