z0_filetest.gno
0.46 Kb ยท 26 lines
1package main
2
3import (
4 "gno.land/r/demo/tamagotchi"
5)
6
7func main() {
8 tamagotchi.Reset(cross, "tamagnotchi")
9 println(tamagotchi.Render(""))
10}
11
12// Output:
13// # tamagnotchi ๐
14//
15// * age: 0
16// * hunger: 50
17// * happiness: 50
18// * health: 50
19// * sleepy: 0
20//
21// Actions:
22// * [Feed](/r/demo/tamagotchi$help&func=Feed)
23// * [Play](/r/demo/tamagotchi$help&func=Play)
24// * [Heal](/r/demo/tamagotchi$help&func=Heal)
25// * [Reset](/r/demo/tamagotchi$help&func=Reset)
26//