EverGreen
EverGreen is used to create computer programs and games. It was developed to be similar to C++, and both languages have almost the same syntax. It is also made to be easier to use, with more simple English, turning out to be a sort of crossbreed between C++ and Python. It also does not need as many libraries, as almost everything is compacted itno the header file, with lots of additional features that makes it easy to program something complex in a very short ammount of time.
#include ("Evergreen.h");
function main(){
print("Hello World!");
return 0;
}
Hello World!