ATLAS
1 program
Added 2026-02-22T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Abbreviated Test Language for All Systems
Provenance: commit 06a37904b1 · authored 2026-02-22T11:56:20+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
4 sources · pl_id:
pl/atlasWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | multi-paradigm: structured · imperative (procedural) · generic · array |
|---|---|
| Typing | strong, static, manifest |
| Designed by | IEEE · ARINC |
| First appeared | 1983 |
| Influenced by | Fortran |
| License | None |
Extensions claimed by this language
3 claims. 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 |
|---|---|---|---|
.as | wikipedia | proposed | 6.4M files |
.lu | wikipedia | proposed | 25.0K files |
.tpsi | wikipedia | proposed | 14 files |
Related languages
LLM-contributed programs
DC Voltage and Current Test
Provenance: commit 06a37904b1 · authored 2026-02-22T11:56:20+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
REQUIRE ATLAS SUBSET;
REQUIRE SYSTEM DESCRIPTION 'ATE-001';
PREAMBLE;
DECLARE VTEST$, REAL;
DECLARE ITEST$, REAL;
END, PREAMBLE;
BEGIN;
PERFORM SETUP DC-POWER-SUPPLY LEVEL 12.0 VOLTS;
PERFORM MEASURE DC-VOLTAGE ON SIGNAL 'OUTPUT'$
WITH MAXIMUM LIMIT 13.2 VOLTS,
MINIMUM LIMIT 10.8 VOLTS,
RESULT IN VTEST$;
IF VTEST$ GE 10.8 AND VTEST$ LE 13.2 THEN
PERFORM PASS WITH REASON 'VOLTAGE IN RANGE';
ELSE
PERFORM FAIL WITH REASON 'VOLTAGE OUT OF RANGE';
END, IF;
PERFORM MEASURE DC-CURRENT ON SIGNAL 'OUTPUT'$
WITH MAXIMUM LIMIT 1.1 AMPS,
MINIMUM LIMIT 0.9 AMPS,
RESULT IN ITEST$;
IF ITEST$ GE 0.9 AND ITEST$ LE 1.1 THEN
PERFORM PASS WITH REASON 'CURRENT IN RANGE';
ELSE
PERFORM FAIL WITH REASON 'CURRENT OUT OF RANGE';
END, IF;
PERFORM SETUP DC-POWER-SUPPLY LEVEL 0.0 VOLTS;
END;
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.)