Koord

1 program Added 2026-03-06T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: KoordLang
Provenance: commit c7dd897954 · authored 2026-03-06T09:40:20+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

Koka (0.30)D (0.29)Koneko (0.27)Slang (0.25)Keli (0.24)

LLM-contributed programs

Rendezvous

Provenance: commit c7dd897954 · authored 2026-03-06T09:40:20+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.koord · added: 2026-03-06T10:00:00Z
# Koord program: Rendezvous - robots converge to centroid of positions
# Based on the Koord language for distributed cyber-physical systems

using Motion:
    allread: map[pid, float] x_pos
    allread: map[pid, float] y_pos
    allwrite: float my_x
    allwrite: float my_y

module Rendezvous:
    sensors:
        float x
        float y
    actuators:
        float vx
        float vy

    def centroid_x():
        return sum(x_pos[i] for i in range(num_robots)) / num_robots

    def centroid_y():
        return sum(y_pos[i] for i in range(num_robots)) / num_robots

    init:
        vx = 0.0
        vy = 0.0

    every 100ms:
        my_x = x
        my_y = y
        vx = centroid_x() - x
        vy = centroid_y() - y

Contribute — propose a file extension

Tell us where to find evidence about Koord (mapped to pl/koord). 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/Koord/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Koopas are Involved KornShell →