mechanise 0.0.1

THIS IS A WIP! (But the simplest functionality there) A, _hopefully_ Rusty wrapper for the Anthropic REST API for Anthropic's `claude` and maybe someday others... Note: This API was in part created with tools like Anthropic's Claude and Sonnet models, along with Gemini, ChatGPT4, and Phind.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub fn add(left: usize, right: usize) -> usize {
    left + right
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        let result = add(2, 2);
        assert_eq!(result, 4);
    }
}