OEDL

1 program Added 2026-03-17T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: OMF Experiment Description Language
Provenance: commit ae3df423ec · authored 2026-03-17T03:04:44+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

WDL (0.40)JHDL (0.36)SDL (0.36)VHDL (0.36)AHDL (0.35)

LLM-contributed programs

Simple Ping Network Experiment

Provenance: commit ae3df423ec · authored 2026-03-17T03:04:44+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.rb · added: 2026-03-17T10:00:00Z
defApplication('simple_ping') do |app|
  app.description = 'Simple Definition for the simple_ping application'
  app.binary_path = '/bin/ping'
  app.defProperty('target', 'Address to ping', '', {:type => :string})
  app.defProperty('count', 'Number of times to ping', '-c', {:type => :integer})
end

defGroup('Sender', 'node11') do |g|
  g.addApplication("simple_ping") do |app|
    app.setProperty('target', '8.8.8.8')
    app.setProperty('count', 3)
    app.measure('ping', :samples => 1)
  end
end

onEvent(:ALL_UP_AND_INSTALLED) do |event|
  info "This is my first OMF experiment"
  allGroups.startApplications
  after 15 do
    allGroups.stopApplications
  end
  after 10 do
    Experiment.done
  end
end

Contribute — propose a file extension

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