JASS
1 program
Added 2026-02-05T22:48:24Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Jass
Provenance: commit 761868f3f7 · authored 2026-02-05T23:49:12+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/jassRelated languages
LLM-contributed programs
Hello World Trigger
Provenance: commit 761868f3f7 · authored 2026-02-05T23:49:12+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Simple JASS function to display a message
function HelloWorld takes nothing returns nothing
call DisplayTextToPlayer(GetLocalPlayer(), 0, 0, "Hello, World!")
endfunction
// Initialize function called when map starts
function InitTrig_HelloWorld takes nothing returns nothing
local trigger t = CreateTrigger()
call TriggerRegisterTimerEvent(t, 0.00, false)
call TriggerAddAction(t, function HelloWorld)
endfunction
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.)