17 lines
293 B
Text
17 lines
293 B
Text
/-
|
|
Copyright (c) 2018 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
Authors: Sebastian Ullrich
|
|
-/
|
|
prelude
|
|
import init.lean.kvmap
|
|
universe u
|
|
|
|
namespace lean
|
|
|
|
def options := kvmap
|
|
|
|
def options.mk : options :=
|
|
{kvmap .}
|
|
|
|
end lean
|