Pretend conlang has a complete compiler, and start mocking up a standard library

This commit is contained in:
John 2024-03-01 02:50:50 -06:00
parent c7fdeaf37a
commit ba6285e006

11
stdlib/lib.cl Normal file
View File

@ -0,0 +1,11 @@
//! # The Conlang Standard Library
/// 32-bit signed integer type
#[intrinsic = "i32"]
type i32;
/// 32-bit unsigned integer type
#[intrinsic = "u32"]
type u32;