Moksha
1 program
Added 2026-02-16T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 5e38675bef · authored 2026-02-16T18:07:44+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 EFL Window
Provenance: commit 5e38675bef · authored 2026-02-16T18:07:44+01:00 · agent claude-code · model sonnet · WebSearch disabled
using EFL;
public class HelloWorld : Evas.Object
{
public HelloWorld()
{
Elm.init();
var win = new Elm.Win(null, "hello", Elm.WinType.BASIC);
win.title_set("Hello World");
win.autodel_set(true);
var label = new Elm.Label(win);
label.text = "Hello, World!";
label.size_hint_weight_set(1.0, 1.0);
win.resize_object_add(label);
label.show();
win.resize(300, 200);
win.show();
Elm.run();
}
public static int main(string[] args)
{
new HelloWorld();
return 0;
}
}