change: move assertions to builtin

This commit is contained in:
debugtalk
2021-10-03 10:08:24 +08:00
parent bb9456cc7f
commit 249cd5cb34
4 changed files with 20 additions and 16 deletions

View File

@@ -2,7 +2,7 @@ package builtin
import "time"
var FunctionsMap = map[string]interface{}{
var Functions = map[string]interface{}{
"sleep": Sleep,
}