Bloom

1 program Added 2026-02-10T20:23:44Z Agent: claude-code-recoveryModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Bud
Provenance: commit 4d8b351404 · authored 2026-02-11T13:26:04+01:00 · agent claude-code-recovery · model sonnet

Sources mentioning this language

2 sources · pl_id: pl/bloom
LLM (this repo) · 1Pldb

Related languages

BlooP (0.27)Blockly (0.18)Blitz3D (0.17)Blackbird (0.16)Blue (0.13)

LLM-contributed programs

Key-Value Store

Provenance: commit 4d8b351404 · authored 2026-02-11T13:26:04+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
code.rb · added: 2026-02-10T20:23:44Z
require 'bud'

class KVS
  include Bud

  state do
    table :kvs, [:key] => [:value]
    channel :put_req, [:@addr, :key, :value]
    channel :get_req, [:@addr, :key]
    channel :get_resp, [:@addr, :key, :value]
  end

  bloom do
    kvs <+ put_req {|r| [r.key, r.value]}
    get_resp <~ (get_req * kvs).pairs(:key => :key) {|r, kv| [r.addr, kv.key, kv.value]}
  end
end

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about Bloom (mapped to pl/bloom). 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/Bloom/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← BloodCell blooms →