Talk:Recorder

From Esolang
Jump to navigation Jump to search

Discuss about if Recorder is Turing Complete
If it is, WRITE THE CODE FOR IT IN THE TURING MACHINE SECTION, oh wait my caps was on

Talk

Rules

Turing Machine

Is this code valid?

Orisphera:

Let's say we have the following code:

first a b:
    return a

second a b:
    return b

Are the following snippets valid?

Snippet 1:

other x:
    return x second first

Snippet 2:

pair a b x:
    return x a b

p = pair hello world
p first # hello
p second # world