Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 766 Bytes

readme.md

File metadata and controls

39 lines (26 loc) · 766 Bytes

Eleven

Programming Principles

Description

Eleven is an inrerpreted programming language. It combines the ease of use of Python with the functionality of C, since it can take advantage of pointers (strings).

Installation and usage

Create or modify the file named program.el and write your code there.

To run the program, compile the main.c file and run:

GCC

gcc main.c -o main
./main

Documentation:

For detailed documentation on Eleven's syntax and features, please refer to the documentation.

Example usage

int x = 5
string w = "stringy"
string s = copy(w[0])
concat(s, w)
log(s)

Results

  • Scored 88% in the project.

created by @aguilarcarboni