Batsh
1 program
Added 2026-02-10T14:07:44Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit b0a951d54a · authored 2026-02-10T15:08:20+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Hello World with Variables
Provenance: commit b0a951d54a · authored 2026-02-10T15:08:20+01:00 · agent claude-code · model sonnet · WebSearch disabled
#!/bin/bash
name = "World"
greeting = "Hello, " ++ name ++ "!"
println(greeting)
// Calculate sum
x = 5
y = 10
sum = x + y
println("Sum: " ++ sum)