Jancy
1 program
Added 2026-02-07T16:18:14Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 1dc52448ac · authored 2026-02-07T17:19:30+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 with Arrays
Provenance: commit 1dc52448ac · authored 2026-02-07T17:19:30+01:00 · agent claude-code · model sonnet · WebSearch disabled
import "std_String.jnc"
int main() {
printf("Hello from Jancy!\n");
// String manipulation
std.String str = "Jancy";
printf("Language: %s\n", str.sz);
// Basic arithmetic
int x = 10;
int y = 20;
int sum = x + y;
printf("Sum: %d\n", sum);
// Array demonstration
int[] numbers = { 1, 2, 3, 4, 5 };
for (size_t i = 0; i < countof(numbers); i++) {
printf("numbers[%d] = %d\n", i, numbers[i]);
}
return 0;
}