github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/r/demo/tamagotchi/z0_filetest.gno (about) 1 package main 2 3 import ( 4 "std" 5 "time" 6 7 "gno.land/r/demo/tamagotchi" 8 ) 9 10 func main() { 11 tamagotchi.Reset("tamagnotchi") 12 println(tamagotchi.Render("")) 13 } 14 15 // Output: 16 // # tamagnotchi 😃 17 // 18 // * age: 0 19 // * hunger: 50 20 // * happiness: 50 21 // * health: 50 22 // * sleepy: 0 23 // 24 // Actions: 25 // * [Feed](/r/demo/tamagotchi?help&__func=Feed) 26 // * [Play](/r/demo/tamagotchi?help&__func=Play) 27 // * [Heal](/r/demo/tamagotchi?help&__func=Heal) 28 // * [Reset](/r/demo/tamagotchi?help&__func=Reset)