ACEBasic

(★ 32)

AmigaBasic ACE

File Explorer

  • .gitattributes
  • .gitignore
  • AGENTS.md
  • aminet.readme
  • CHANGELOG.txt
  • CLAUDE.md
  • delete-uaem.sh
  • Docs.info
  • Examples.info
  • Gnu_Public_Lisence.html
  • IDE.info
  • Install-ACE
  • Install-ACE.info
  • LICENSE
  • README.md
  • VERSION

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

hello

View Details ▼

Print "Hello, world!", "hello, world", or a customizable text.

hello

Print "Hello, world!":

hello {{[-t|--traditional]}}

Print "hello, world", the traditional type:

hello {{[-g|--greeting]}} "{{greeting_text}}"

Print a text message:

🔍

arithmetic

View Details ▼

Quiz on simple arithmetic problems.

arithmetic

Start an arithmetic quiz:

arithmetic -o {{+|-|x|/}}

Specify one or more arithmetic [o]peration symbols to get problems on them:

arithmetic -r {{7}}

Specify a [r]ange. Addition and multiplication problems would feature numbers between 0 and range, inclusive. Subtraction and division problems would have required result and number to be operated on, between 0 and range:

🔍

lib

View Details ▼

The Microsoft Library Manager for creating and managing static libraries of object files.

lib /OUT :{{path\to\library.lib}} {{path\to\file1.obj path\to\file2.obj ...}}

Create a static library from object files:

lib /LIST {{path\to\library.lib}}

List the contents of a library:

lib {{path\to\library.lib}} {{path\to\file.obj}}

Add an object file to an existing library:

// repository documentation