all repos — vite @ a741d82fd6191ccfbf8e9a480f8def8f170831da

a fast (this time, actually) and minimal static site generator

utils.go (view raw)

 1package main
 2
 3import (
 4	"fmt"
 5	"os"
 6	"strings"
 7)
 8
 9func printMsg(s ...string) {
10	fmt.Println("vite:", strings.Join(s, " "))
11}
12
13func printErr(e error) {
14	fmt.Fprintln(os.Stderr, "error:", e)
15}