Elna programming language compiles simple mathematical operations to RISC-V code.
Go to file
2024-07-07 18:41:54 +02:00
backend Type check binary expressions 2024-05-28 23:39:04 +02:00
cli Introduce a procedure type 2024-05-19 00:43:59 +02:00
include Check assignment type 2024-07-07 18:41:54 +02:00
source Check assignment type 2024-07-07 18:41:54 +02:00
tests Add missing virtual distructors 2024-05-27 22:58:54 +02:00
tools Type check binary expressions 2024-05-28 23:39:04 +02:00
.gitignore Add a tester script 2024-05-27 11:03:23 +02:00
CMakeLists.txt Add missing virtual distructors 2024-05-27 22:58:54 +02:00
package-lock.json Add a tester script 2024-05-27 11:03:23 +02:00
package.json Type check binary expressions 2024-05-28 23:39:04 +02:00
README Extend the tester to compile sources 2024-02-25 15:16:19 +01:00
TODO Check assignment type 2024-07-07 18:41:54 +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.