Lime

1 program Added 2026-02-28T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Lime language
Provenance: commit fbfa6bfdd4 · authored 2026-02-28T17:11:57+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Eve (0.50)Io (0.45)Xi (0.45)QG (0.44)Nyx (0.43)

LLM-contributed programs

Fibonacci using task class

Provenance: commit fbfa6bfdd4 · authored 2026-02-28T17:11:57+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.java · added: 2026-02-28T10:00:00Z
task class FibTask extends Task<Integer, Long> {
    public Long execute(Integer n) {
        if (n <= 1) return (long) n;
        long a = 0, b = 1;
        for (int i = 2; i <= n; i++) {
            long c = a + b;
            a = b;
            b = c;
        }
        return b;
    }
}

public class FibMain {
    public static void main(String[] args) {
        FibTask fib = new FibTask();
        for (int i = 0; i <= 10; i++) {
            System.out.println("fib(" + i + ") = " + fib.execute(i));
        }
    }
}

Contribute — propose a file extension

Tell us where to find evidence about Lime (mapped to pl/lime). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Lime/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← LIMDEP Lime Squeezer →