Atlast

1 program Added 2026-03-10T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: ATLAST, Autodesk Threaded Language Application System Toolkit
Provenance: commit 87ee793154 · authored 2026-03-10T20:02:59+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)
LLM (this repo) · 1

Related languages

C/AL (0.26)TAL (0.24)ISBL (0.23)XAML (0.23)SYMPL (0.23)

LLM-contributed programs

Stack-based Word Definitions

Provenance: commit 87ee793154 · authored 2026-03-10T20:02:59+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.atl · license: Public Domain · added: 2026-03-10T12:00:00Z
\ ATLAST (Autodesk Threaded Language Application System Toolkit)
\ Example: Stack-based word definitions
\ Demonstrates ATLAST/Forth colon definitions and arithmetic

: square   ( n -- n^2 )
    dup * ;

: cube     ( n -- n^3 )
    dup square * ;

: sum-of-squares  ( a b -- a^2+b^2 )
    square swap square + ;

: between  ( n lo hi -- flag )
    rot dup rot >=      \ n flag1  ( n >= lo )
    -rot swap <=        \ flag1 flag2  ( n <= hi )
    and ;

\ Test the words
5 square .          \ => 25
3 cube .            \ => 27
3 4 sum-of-squares . \ => 25
7 1 10 between .    \ => -1 (true)
15 1 10 between .   \ => 0 (false)

Contribute — propose a file extension

Tell us where to find evidence about Atlast (mapped to pl/atlast). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Atlast/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← atlas-autocode Atle →