12 lines
165 B
Common Lisp
12 lines
165 B
Common Lisp
//! # The Conlang Standard Library
|
|
|
|
/// 32-bit signed integer type
|
|
#[intrinsic = "i32"]
|
|
type i32;
|
|
|
|
/// 32-bit unsigned integer type
|
|
#[intrinsic = "u32"]
|
|
type u32;
|
|
|
|
|