High Level Assembly
1 program
Added 2025-11-05T08:02:25Z
Model: google/gemini-2.5-proTemp: 0.4
Evidence
Report issue
View issues
Aliases: HLA
Provenance: commit 9a67177d65 · authored 2025-11-05T09:02:26+01:00 · model google/gemini-2.5-pro
Sources mentioning this language
5 sources · pl_id:
pl/hlaWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | Randall Hyde |
|---|---|
| License | Public domain |
| Homepage | https://plantation-productions.com/Webster/HighLevelAsm/index.html |
Related languages
LLM-contributed programs
Guess the Number Game
Provenance: commit 9a67177d65 · authored 2025-11-05T09:02:26+01:00 · model google/gemini-2.5-pro · Temp 0.4
program guessNumber;
#include( "stdlib.hhf" );
static
Guess: uns32;
TheNumber: uns32;
begin guessNumber;
// Pick a random number between 1 and 100.
rand.makenew;
rand.urange( 100 );
mov( eax, TheNumber );
inc( TheNumber );
// Play the game with the user.
stdout.put( "I'm thinking of a number between 1 and 100.", nl,
"Guess the number!", nl, nl );
repeat
stdout.put( "Enter your guess: " );
stdin.getu32();
mov( eax, Guess );
if( Guess < TheNumber ) then
stdout.put( "Your guess is too low, try again.", nl );
elseif( Guess > TheNumber ) then
stdout.put( "Your guess is too high, try again.", nl );
else
stdout.put( "You guessed the number!", nl );
endif;
until( Guess = TheNumber );
end guessNumber;
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.)