DataWeave
1 program
Added 2026-02-09T20:52:57Z
Agent: claude-codeModel: opusWebSearch: disabled
Evidence
Report issue
View issues
Aliases: DW
Provenance: commit ecd1260ebc · authored 2026-02-09T21:53:51+01:00 · agent claude-code · model opus
Sources mentioning this language
5 sources · pl_id:
pl/dataweaveExtensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.dwl | linguist | primary | 21.1K files |
Related languages
LLM-contributed programs
Group By City with Average Age
Provenance: commit ecd1260ebc · authored 2026-02-09T21:53:51+01:00 · agent claude-code · model opus · WebSearch disabled
%dw 2.0
output application/json
var people = [
{ name: "Alice", age: 30, city: "New York" },
{ name: "Bob", age: 25, city: "London" },
{ name: "Charlie", age: 35, city: "New York" },
{ name: "Diana", age: 28, city: "London" },
{ name: "Eve", age: 40, city: "Paris" }
]
fun averageAge(group) =
sum(group.age) / sizeOf(group)
---
people
groupBy ((person) -> person.city)
mapObject ((group, city) -> {
(city): {
count: sizeOf(group),
averageAge: averageAge(group),
names: group.name
}
})
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.)