Multiprocessing

From Esolang
Jump to navigation Jump to search

Multiprocessing, or MP is an esolang created by User:None1.

Commands

There is only one command: *, which starts the program in a separate process, all other characters are NOPs.

Example Programs

Fork Bomb

**

The program executes itself recursively until your computer crashes.

Interpreters

Python

The interpreter only supports Windows

import os,sys
c=input()
for i in c:
    if i=='*':
        os.system('start '+sys.executable+' '+sys.argv[0])