demo.gno
0.67 Kb ยท 27 lines
1package demo
2
3func Render(_ string) string {
4 return `# Gno Demo Packages
5
6Welcome to the "demo" namespace. Here you will find realms that demonstrate
7how the Gno language can be used. Check out some examples below:
8
9- [Art](/r/demo/art)
10- [AtomicSwap](/r/demo/atomicswap)
11- [Userbook](/r/demo/userbook)
12- [Boards](/r/demo/boards)
13- [Counter](/r/demo/counter)
14- GRC:
15 - [Foo20](/r/demo/foo20)
16 - [Bar20](/r/demo/bar20)
17 - [GRC20 Registry](/r/demo/grc20reg)
18 - [GRC20 Factory](/r/demo/grc20factory)
19 - [Foo721](/r/demo/foo721)
20- ...
21
22
23> This is a non-exhaustive list. Check out the [Gno monorepo](https://github.com/gnolang/gno/tree/master/examples/gno.land/r/demo)
24for more examples.
25
26`
27}