Egor Moon Language (EML or EM) - Programming Language (for help type help) INSTALL: git clone https://github.com/Egor-perevalov/EM.git
Example:
- print Hello, world!;
- a = 4; print get a;
- help;
- a = 4+4;
- print type gen_key(); Hash: a = hash('text', 224); Explanation: "text": text to hash "v": version to hash Print: Outputting data to the screen. print var, str, int, float, list, ect. Indents: There are no indents in EM! if a: print yes; print y; Wrong! Right: if a: print yes; print y;