RapidBATCH
1 program
Added 2026-03-05T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Rapid BATCH
Provenance: commit e08d3b522e · authored 2026-03-05T19:12:14+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/rapidbatchRelated languages
LLM-contributed programs
Hello World and File Operations
Provenance: commit e08d3b522e · authored 2026-03-05T19:12:14+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
// RapidBATCH Hello World and simple file operations
// RapidBATCH is a scripting language for Windows automation
// Display a message box
MessageBox("Hello, World!", "RapidBATCH Demo", 0)
// Create and write to a file
FileWrite("output.txt", "Hello from RapidBATCH!", FALSE)
// Read the file back
result = FileRead("output.txt")
MessageBox(result, "File Contents", 0)
// Simple loop
for i = 1 to 5
Print("Iteration: " + i)
next
// Delete the file
FileDelete("output.txt")
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.)