Files
fudge2/src/ast/ast_node.rs

3 lines
53 B
Rust
Raw Normal View History

2025-10-21 22:13:13 +02:00
pub trait ASTNode {
fn repr_c(&self) -> String;
}