2014-08-07 18:36:44 +00:00
|
|
|
-- Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
2014-07-02 15:36:05 +00:00
|
|
|
-- Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
-- Author: Leonardo de Moura
|
2014-11-07 16:53:14 +00:00
|
|
|
import data.bool.decl
|
2014-07-02 15:36:05 +00:00
|
|
|
|
|
|
|
inductive char : Type :=
|
2014-09-05 05:31:52 +00:00
|
|
|
mk : bool → bool → bool → bool → bool → bool → bool → bool → char
|
2014-07-02 15:36:05 +00:00
|
|
|
|
2014-09-05 05:31:52 +00:00
|
|
|
inductive string : Type :=
|
|
|
|
empty : string,
|
|
|
|
str : char → string → string
|