Asylum Programming Language Reference Manual

Welcome to the Asylum Programming Language Reference Manual! Here, you will learn all there is to know about Asylum, regardless of your programming experience! Whether you are a programming veteran, or completely new to programming, this reference should go into the necessary depth with even practice problems to quiz your understanding.

Asylum Language Reference:

Goals

Asylum has many goals:

  • Be clear on how memory is being utilized (copied, referenced, moved, allocated, destroyed, etc).

  • Be beginner friendly (intuitive syntax and semantics, “pits of success”, higher-level abstractions, etc).

  • Be applicable for general-purpose and low-level development.

  • Written densely. This is to make it faster to type, read, and refactor. Most keywords and common types are short. Operator overloading is also allowed and taken advantage of to make operations easier to do and recognize.

Non-Goals

There are some things Asylum does not aim to be:

  • A clone of any language. While Asylum may look similar to a given language and have similar features, it is a different language and will not have the same features and guarantees.