diff --git a/examples/gno.land/p/demo/lol/gno.mod b/examples/gno.land/p/demo/lol/gno.mod new file mode 100644 index 00000000000..1a2d2b44ea6 --- /dev/null +++ b/examples/gno.land/p/demo/lol/gno.mod @@ -0,0 +1 @@ +module gno.land/p/demo/lol diff --git a/examples/gno.land/p/demo/lol/lol.gno b/examples/gno.land/p/demo/lol/lol.gno new file mode 100644 index 00000000000..e7dd57048bf --- /dev/null +++ b/examples/gno.land/p/demo/lol/lol.gno @@ -0,0 +1 @@ +package lol diff --git a/examples/gno.land/p/demo/lol/lol_test.gno b/examples/gno.land/p/demo/lol/lol_test.gno new file mode 100644 index 00000000000..493c2f4c149 --- /dev/null +++ b/examples/gno.land/p/demo/lol/lol_test.gno @@ -0,0 +1,9 @@ +package lol_test + +import ( + "testing" +) + +func TestLol(t *testing.T) { + println("hello") +}