ExecScript

ExecScript

sounds like the js function, is a cpp dialect

this is a programming language called ExecScript thats like cpp but supposed to be easier

Docs

What is ExecScript?

ExecScript is a C++ Dialect that’s intended to make C++ look a little bit like Basic.

Here’s some example code:

main {
    print "This is ExecScript!";
    print 5 mod 6;
    print 5 is 5;
}

Requirements and notes

Install ExecScript

execute this command to install ExecScript:

# Using git
git clone https://github.com/Efendo/ExecScript/
# Using gh CLI
gh repo clone Efendo/ExecScript
Note: it has been compiled on x86-64 mac, you may have to recompile it using: cd ExecScript && make -s && cd ..

then add it to your path

export PATH="$PATH:$HOME/ExecScript/bin/"

Commands

To compile a file, type:

excs -c [FileToCompile] [OutputFile]

To compile a file to C++, type:

excs -cpp [FileToCompile] [OutputFile]

To get help, type:

excs -h

to make an excs project (you dont need to), type:

excs -m [ProjectName]
to run it (the project), type ./run

Trouble shooting / error numbers

err127

-File not found

err349

-File is empty

Keywords / Macros

Links

Efendo’s Github

View Website

View on Github

Try it on replit