14 lines
352 B
Text
14 lines
352 B
Text
/-
|
|
Copyright (c) 2016 Jared Roesch. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
Authors: Jared Roesch
|
|
-/
|
|
prelude
|
|
import init.meta.name
|
|
|
|
inductive builtin
|
|
| cfun : name → nat → builtin
|
|
| cases : name → nat → builtin
|
|
| vm : name → builtin
|
|
|
|
meta constant native.get_builtin : name → option builtin
|