// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//! This module stores the static constants in the crate
use lazy_static;
use Regex;
lazy_static!
pub static BOOL: &str = "Bool";
pub static INT: &str = "Int";
pub static REAL: &str = "Real";
pub static STRING: &str = "String";
pub static REGLAN: &str = "Reglan";
pub static ARRAY: &str = "Array";
pub static BITVEC: &str = "BitVec";