return { s( { trig = 'package main', name = 'Go skeleton' }, fmt( [[ package main func main() {{ {} }} ]], { i(0, 'println("hello world!")') } ) ), s( { trig = 'package test', name = 'Go test skeleton' }, fmt( [[ package main import ( "testing" ) func Test{}(t *testing.T) {{ {} }} ]], { i(1, 'Foobar'), i(0, 't.Logf("Hello world")'), } ) ), }