We are currently working on new rules for what content should and shouldn't be allowed on this website, and are looking for feedback! See Esolang:2026 topicality proposal to view and give feedback on the current draft.

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? YES Snippet 1:

other x: #this, by BestCoder, it is other first -> second, and other second -> first
    return x second first

Snippet 2:

#ok this is valid, by BestCoder
pair a b x:
    return x a b

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