Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

render_example_test.gno

0.23 Kb · 10 lines
 1package crowdfund
 2
 3// ExampleRender pins the realm's Render output as a testable example.
 4func ExampleRender() {
 5	print(Render(""))
 6	// Output:
 7	// # Crowdfund
 8	//
 9	// No campaigns yet. Call `Launch(goal, durationBlocks)` to start one.
10}