gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/const19.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  	"time"
     6  )
     7  
     8  func get10Hours() time.Duration {
     9  	return 10 * time.Hour
    10  }
    11  
    12  func main() {
    13  	fmt.Println(get10Hours().String())
    14  }
    15  
    16  // Output:
    17  // 10h0m0s