Bug fix: Add 'Add' method for non-js environment

This commit is contained in:
Hajime Hoshi 2015-01-21 10:37:15 +09:00
parent 4c37efd673
commit ba3a612ce4

View File

@ -27,3 +27,7 @@ func Start() {
func Append(l []float32, r []float32) {
// TODO: Implement
}
func Add(l []float32, r []float32) {
// TODO: Implement
}