Jack
1 program
Added 2026-02-25T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Jack (nand2tetris), Jack programming language
Provenance: commit a4437a9985 · authored 2026-02-25T09:21:32+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Hello World
Provenance: commit a4437a9985 · authored 2026-02-25T09:21:32+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
// This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/09/HelloWorld/Main.jack
/** A Jack application that prints some text on the screen. */
class Main {
/** Runs the application. */
function void main() {
/* Prints some text using the standard library. */
do Output.printString("Hello World");
do Output.println(); // New line
return;
}
}