feat: implement dofile on midnight

midnight-edition
sammyette 2024-12-22 01:18:54 -04:00
parent 004615b1b2
commit 287a983730
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,6 @@ func (mlr *Runtime) DoString(code string) (Value, error) {
} }
func (mlr *Runtime) DoFile(filename string) error { func (mlr *Runtime) DoFile(filename string) error {
//return mlr.state.DoFile(filename) return mlr.state.DoFile(filename)
return nil return nil
} }