Correct spelling.
[SquirrelJME.git] / assets / developer-notes / stephanie-gawroriski / 2022 / 06 / 12.mkd
blob807f8962c4608fbded21460c1b426440fe59b71a
1 # 2022/06/12
3 ## 18:56
5 Okay so one thing I want to do is make some kind of garbage collection or
6 smart pointer cleanup stuff in C. I figure I can do this with macros and
7 otherwise. Could probably get away with using `alloca()` to allocate information
8 on what needs to be cleaned up. I also want to add a base form of exception
9 handling so I can escape from the method and do things like this accordingly.
10 Of course that would be macro heavy and pretty much required to do it like this
11 but I think I could use it.
13 ## 21:49
15 Okay so the Ratufa Refactor branch has some good things I want to cherry pick
16 so it is smaller and that is the pipes for input/output which is way better
17 and also the array filling.