github.com/vugu/vugu@v0.3.6-0.20240430171613-3f6f402e014b/tinygo-dev/testpgm.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  
     6  	"github.com/vugu/vjson"
     7  	"github.com/vugu/vugu"
     8  	"github.com/vugu/vugu/domrender"
     9  )
    10  
    11  func main() {
    12  
    13  	var r vjson.RawMessage
    14  	var be vugu.BuildEnv
    15  
    16  	var jr domrender.JSRenderer
    17  
    18  	// log.Printf("hello there!")
    19  	fmt.Printf("hello testpgm: %v %v %v\n", r, be, jr) //nolint
    20  	fmt.Printf("hello testpgm: %v\n", jr)              //nolint
    21  	// println("blah blah")
    22  }