diff --git a/compiler/stdlib/os.go b/compiler/stdlib/os.go index d2e75de..826d582 100644 --- a/compiler/stdlib/os.go +++ b/compiler/stdlib/os.go @@ -27,7 +27,6 @@ var osModule = map[string]objects.Object{ "mode_setgui": &objects.Int{Value: int64(os.ModeSetgid)}, "mode_char_device": &objects.Int{Value: int64(os.ModeCharDevice)}, "mode_sticky": &objects.Int{Value: int64(os.ModeSticky)}, - "mode_irregular": &objects.Int{Value: int64(os.ModeIrregular)}, "mode_type": &objects.Int{Value: int64(os.ModeType)}, "mode_perm": &objects.Int{Value: int64(os.ModePerm)}, "path_separator": &objects.Char{Value: os.PathSeparator},