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).
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
For detailed documentation on Eleven's syntax and features, please refer to the documentation.
int x = 5
string w = "stringy"
string s = copy(w[0])
concat(s, w)
log(s)
- Scored 88% in the project.