JPython
1 program
Added 2026-03-06T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit cc59a3a37d · authored 2026-03-06T09:21:25+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 and Factorial
Provenance: commit cc59a3a37d · authored 2026-03-06T09:21:25+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
# Hello World and Factorial in JPython
# JPython (later renamed Jython) runs Python on the JVM
print "Hello, World!"
def factorial(n):
if n == 0:
return 1
return n * factorial(n - 1)
for i in range(1, 11):
print i, "! =", factorial(i)