Files
sointu/cmd/synthers_native.go
T

12 lines
162 B
Go

//go:build native
package cmd
import (
"github.com/vsariola/sointu/vm/compiler/bridge"
)
func init() {
Synthers = append(Synthers, bridge.NativeSynther{})
}