This repository has been archived on 2024-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
arf/translator/translator.go

12 lines
347 B
Go

package translator
import "git.tebibyte.media/arf/arf/analyzer"
// Translate takes in a path to a module and an io.Writer, and outputs the
// corresponding C through the writer. The C code will import nothing and
// function as a standalone translation unit.
func Translate (modulePath string, output io.Writer) (err error) {
// TODO
return
}