ctxctl 0.1.3

Pure CLI, zero-MCP, stateless context layer for AI coding agents.
//! Fixture module used by ctxctl integration tests.

/// Adds two numbers.
pub fn add(a: i32, b: i32) -> i32 {
    a + b
}

struct Point {
    x: f64,
    y: f64,
}

impl Point {
    fn norm(&self) -> f64 {
        (self.x * self.x + self.y * self.y).sqrt()
    }
}

pub const ANSWER: i32 = 42;