pub fn add(left: u64, right: u64) -> u64
Adds two numbers.
This is a placeholder function to demonstrate the library structure.
use atliac_crate_template::add; let result = add(2, 2); assert_eq!(result, 4);