mirror of
https://github.com/alda-lang/alda.git
synced 2026-03-03 18:23:36 +01:00
14 lines
250 B
Go
14 lines
250 B
Go
package code_generator
|
|
|
|
import (
|
|
"alda.io/client/model"
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func Generate(scoreUpdates []model.ScoreUpdate, w io.Writer) {
|
|
// TODO: Implement an Alda code generator
|
|
// fmt.Fprintln(w, score.JSON().String())
|
|
fmt.Fprintln(w, "# WIP")
|
|
}
|