Skip to content
Snippets Groups Projects
Commit 70c1ea41 authored by Abel's avatar Abel
Browse files

Added timetracking mod + test

parent c5ea516f
No related branches found
No related tags found
No related merge requests found
package main
import (
"fmt"
)
func main() {
//test
start := StartTimer()
fmt.Println(start)
for i := 1; i < 1000000; i++ {
fmt.Println(i)
}
fmt.Println(StopTimer(start))
}
package timetracker
package main
import (
"time"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment