untested compiled Math syscalls

This commit is contained in:
2025-12-06 22:28:39 -07:00
parent ab7b36ac22
commit 19d6679229
3 changed files with 208 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
use crate::compile;
use anyhow::Result;
use indoc::indoc;
use pretty_assertions::assert_eq;
fn test_acos() -> Result<()> {
todo!()
}

View File

@@ -47,4 +47,5 @@ mod declaration_literal;
mod function_declaration;
mod logic_expression;
mod loops;
mod math_syscall;
mod syscall;