#programming-language #unix #execution

app aspl

A Simple Programming Language

5 releases

new 0.2.3 Oct 21, 2024
0.2.2 Oct 21, 2024
0.2.1 Oct 21, 2024
0.2.0 Oct 19, 2024
0.1.0 Oct 19, 2024

#84 in Programming languages

Download history 535/week @ 2024-10-16

535 downloads per month

MIT license

36KB
620 lines

aspl - A Simple Programming Language

aspl is a simple, intuitive programming language inspired by the Bash shell and Unix command-like systems. It is designed to streamline scripting tasks and command execution with a syntax that feels familiar to those accustomed to Unix environments.

Language

Basic

set msg "The apple count is: "
set count 10
logl msg count # The apple count is: 10

Conditional

set a 10
set b 20

check a < b {
  logl "a is less than b"
}

Using

Installation

cargo install aspl

Running

aspl <input.aspl>

LICENSE

LICENSE

Dependencies