Ψ

From Esolang
Jump to navigation Jump to search

IDEA:a language whose core function makes unnecessary amount of forks and the challenge is making sure it doesnt crash your machine due to RAM overload.

if i'm going to make a multi-threaded language it's going to need

  • a way to desynchronise and synchronise threads (2 ops).
  • a way for threads to communicate (2 ops).
  • i need to decide on a form of data storage.
  • a way to operate data reversibly (2 ops if unlimited. 1 if limited but owerflows.).
  • conditionals (1 op).
  • loops/halts (1 op).

ψ or Devilforks is a language created by User:.yazic

Caption text
Code Operation
` if a = 0 broadcast b. if b = 0 print a as ascii. Increment a. if a = b halt.
ψ if a != 0 jump to start and subtract a from b. if b = a fork twice with one fork swapping a and b.
*

TODO: make this make sence!