[Go] `any` type in Go
// interface {} is the same as `any` type in Typscript
func add(inputs []int) interface {} {
return inputs[0].Float() + inputs[1].Float()
}
// interface {} is the same as `any` type in Typscript
func add(inputs []int) interface {} {
return inputs[0].Float() + inputs[1].Float()
}