Initial commit

This commit is contained in:
2026-02-23 08:51:37 -05:00
commit 757a132930
25 changed files with 1780 additions and 0 deletions

5
crash_memory.aura Normal file
View File

@@ -0,0 +1,5 @@
pure fn calculate_speed(distance: f32, time: f32) -> f32:
let temp_dist = distance
// CRASH: 'distance' was just moved to 'temp_dist'. We cannot use it again!
let speed = distance / time
return speed