Goland imprime le temps qu'il a fallu pour que le code s'exécute

package main 

import (
	"time" // Import this to be able to track time
	"fmt" // Import this to print in console
)

//This app will check how long it takes for the computer to print 2000 numbers

func main () {
	start := time.Now()

	for i := 0; i < 2000; i++{
		fmt.Println(i)
	}

	elapsed := time.Since(start) // This will check how long has passed since time.Now() was executed
	fmt.Println(elapsed)
}
ByZef