go-engine 0.1.5

The wrapper of the Goscript project.
Documentation
package main

import (
	"fmt2"
)



func broken(elems ...int) {
    fmt2.Println(elems)
}

func main() {
  broken()
  
  broken(1)

  broken(2,3)
}