dirge-agent 0.12.4

Minimalistic coding agent written in Rust, optimized for memory footprint and performance
1
2
3
4
5
6
7
8
9
10
import React from "react";

function helper(x: number): number {
    return x * 2;
}

export const Component: React.FC = () => {
    const doubled = helper(42);
    return <div>{doubled}</div>;
};