github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/time12_native.gno (about) 1 package main 2 3 import ( 4 "fmt" 5 "time" 6 ) 7 8 var twentyFourHours = time.Duration(24 * time.Hour) 9 10 func main() { 11 fmt.Println(twentyFourHours.Hours()) 12 } 13 14 // Output: 15 // 24