Playing with proc macros

This commit is contained in:
2025-05-23 22:12:24 -07:00
parent 856f817dbe
commit 59392ccad2
8 changed files with 64 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
pub mod peg;
pub use peg::*;
+6
View File
@@ -0,0 +1,6 @@
#[derive(Debug)]
#[allow(dead_code)]
pub enum Foo {
Bar(usize),
Baz(String),
}