Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gabryon99/mucomp-lang

μcomp-lang is a didactic language implemented for Language, Compilers and Interpreters course at UniPi.
https://github.com/gabryon99/mucomp-lang

compilers languages lexer llvm menhir ocaml ocamllex parser programming

Last synced: 13 days ago
JSON representation

μcomp-lang is a didactic language implemented for Language, Compilers and Interpreters course at UniPi.

Awesome Lists containing this project

README

        



## μcomp-lang

μcomp-lang is a didactic language implemented for *Language, Compilers and Iterpreters* course at **UniPi**.

### Report

Read the report `mucomp-report.pdf` inside `asset` folder if you are interested to how mucomp-lang is implemented

### Example

The snippet below shows a simple program written in μcomp.

```

component EntryPoint provides App {

def fib(n: int): int {
if (n == 0) {
return 0;
}

if (n == 1) {
return 1;
}

return fib(n - 1) + fib(n - 2);
}

def main() : int {
print(fib(10)); // prints 10
return 0;
}
}

```

#### Trivia

The mascotte's name is "*Comu*" = "🐄" + "μ" (like: "muuuh") (I know, it's a bad pun).