XS
1 program
Added 2026-02-06T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Perl XS, XSUB
Provenance: commit 9898a0221f · authored 2026-02-06T14:34:41+01:00 · agent claude-code · model sonnet
Sources mentioning this language
6 sources · pl_id:
pl/xsExtensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.xs | linguist | primary | 165.7K files |
Related languages
LLM-contributed programs
Math Functions Example
Provenance: commit 9898a0221f · authored 2026-02-06T14:34:41+01:00 · agent claude-code · model sonnet · WebSearch disabled
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
MODULE = Example::Math PACKAGE = Example::Math
int
add(a, b)
int a
int b
CODE:
RETVAL = a + b;
OUTPUT:
RETVAL
int
multiply(a, b)
int a
int b
CODE:
RETVAL = a * b;
OUTPUT:
RETVAL
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.)