[init] Initial commit

This commit is contained in:
Uttarayan Mondal
2023-08-11 11:42:42 +05:30
commit 143b9c84de
7 changed files with 316 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
use comptime_builder::Builder;
#[derive(Builder)]
pub struct MyStruct<T1, T2> {
pub my_field: T1,
pub my_other_field: T2,
pub our_field: String,
}
pub fn main() {
}