1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-07-15 01:25:00 +02:00

Updated README

This commit is contained in:
Tim Voronov
2018-09-18 21:41:16 -04:00
parent e02e861240
commit b700d17ac5
9 changed files with 474 additions and 27 deletions

14
pkg/compiler/options.go Normal file
View File

@ -0,0 +1,14 @@
package compiler
type (
Option func(opts *Options)
Options struct {
noStdlib bool
}
)
func WithoutStdlib() Option {
return func(opts *Options) {
opts.noStdlib = true
}
}