Elna programming language compiles simple mathematical operations to RISC-V code.
Go to file
2024-09-15 23:03:25 +02:00
lib/Language/Elna Add call pseudo instruction 2024-09-15 23:03:25 +02:00
rakelib Add call pseudo instruction 2024-09-15 23:03:25 +02:00
src Pass relocation base table 2024-09-12 02:21:48 +02:00
tests Add call pseudo instruction 2024-09-15 23:03:25 +02:00
tools Add call pseudo instruction 2024-09-15 23:03:25 +02:00
.gitignore Add enum AST types 2024-07-22 09:47:45 +02:00
.ruby-version Add rake task to build a cross toolchain 2024-09-04 22:05:55 +02:00
elna.cabal Stub the implementation for all phases 2024-09-08 02:08:13 +02:00
LICENSE Initial commit 2024-07-21 16:15:17 +02:00
Rakefile Add rake task to build a cross toolchain 2024-09-04 22:05:55 +02:00
README Initial commit 2024-07-21 16:15:17 +02:00
TODO Add call pseudo instruction 2024-09-15 23:03:25 +02:00

# Elna programming language

Elna compiles simple mathematical operations to machine code.
The compiled program returns the result of the operation.

## File extension

.elna

## Grammar PL/0

program = block "." ;

block = [ "const" ident "=" number {"," ident "=" number} ";"]
        [ "var" ident {"," ident} ";"]
        { "procedure" ident ";" block ";" } statement ;

statement = [ ident ":=" expression | "call" ident 
              | "?" ident | "!" expression 
              | "begin" statement {";" statement } "end" 
              | "if" condition "then" statement 
              | "while" condition "do" statement ];

condition = "odd" expression |
            expression ("="|"#"|"<"|"<="|">"|">=") expression ;

expression = [ "+"|"-"] term { ("+"|"-") term};

term = factor {("*"|"/") factor};

factor = ident | number | "(" expression ")";

## Operations

"!" - Write a line.
"?" - Read user input.
"odd" - The only function, returns whether a number is odd.