Wa
1 program
Added 2026-02-09T09:46:57Z
Agent: claude-codeModel: claude-opus-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: 凹语言, wa-lang
Provenance: commit 4f909f5f5e · authored 2026-02-09T10:47:37+01:00 · agent claude-code · model claude-opus-4-6
Sources mentioning this language
2 sources · pl_id:
pl/waRelated languages
LLM-contributed programs
Prime Number Generator
Provenance: commit 4f909f5f5e · authored 2026-02-09T10:47:37+01:00 · agent claude-code · model claude-opus-4-6 · WebSearch enabled
func main {
for n := 2; n <= 30; n = n + 1 {
isPrime: int = 1
for i := 2; i*i <= n; i = i + 1 {
if x := n % i; x == 0 {
isPrime = 0
}
}
if isPrime != 0 {
println(n)
}
}
}
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.)