2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-20 20:43:23 +00:00

feat: implement dofile on midnight

This commit is contained in:
sammyette 2024-12-22 01:18:54 -04:00
parent 004615b1b2
commit 287a983730
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD

View File

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