1
0
Fork 0

Add type-checking for the majority of language features

This commit is contained in:
Vili Sinervä 2025-02-04 17:07:41 +02:00
parent b0420a9a5f
commit dc9cfcd211
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
4 changed files with 145 additions and 14 deletions

View file

@ -1,6 +1,6 @@
use std::fmt;
#[derive(PartialEq, Debug)]
#[derive(PartialEq, Debug, Clone)]
pub enum Type {
Int,
Bool,