TPU
1 program
Added 2026-02-08T15:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Text Processing Utility, DEC TPU, VAX TPU
Provenance: commit 990ceec956 · authored 2026-02-08T15:21:08+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/text-processing-utilityRelated languages
LLM-contributed programs
Hello World with Buffer Creation
Provenance: commit 990ceec956 · authored 2026-02-08T15:21:08+01:00 · agent claude-code · model sonnet · WebSearch disabled
! TPU Hello World Program
! This procedure displays a message and creates a simple buffer
PROCEDURE user_hello
LOCAL my_buffer;
! Create a new buffer
my_buffer := CREATE_BUFFER("hello_buffer");
! Position to the buffer
POSITION(my_buffer);
! Insert text
COPY_TEXT("Hello, World!");
POSITION(END_OF(my_buffer));
COPY_TEXT(ASCII(10)); ! New line
COPY_TEXT("Welcome to TPU programming!");
! Display message
MESSAGE("Buffer created successfully");
ENDPROCEDURE;
! Execute the procedure
user_hello;
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.)