Yet another esoteric programming language.
Yet another esoteric programming language.
Here it is. It is not my project, I just found it recently on the internet. The name seems to be derived from russian "петух", which means "chicken".
"If you don't fail at least 90 percent of the time, you're not aiming high enough."
- Alan Kay
- Alan Kay
- Schol-R-LEA
- Member
- Posts: 1925
- Joined: Fri Oct 27, 2006 9:42 am
- Location: Athens, GA, USA
Re: Yet another esoteric programming language.
It's a pointer-based UTM. Interesting variation on the idea, though.
Rev. First Speaker Schol-R-LEA;2 LCF ELF JAM POEE KoR KCO PPWMTF
Ordo OS Project
Lisp programmers tend to seem very odd to outsiders, just like anyone else who has had a religious experience they can't quite explain to others.
Ordo OS Project
Lisp programmers tend to seem very odd to outsiders, just like anyone else who has had a religious experience they can't quite explain to others.
Re: Yet another esoteric programming language.
Петух is male, so in English it should be either rooster or coq [changed to French because the stupid forum software turned it into a bunch of stars, "thinking" the word is used to refer to male genitalia].Roman wrote:Here it is. It is not my project, I just found it recently on the internet. The name seems to be derived from russian "петух", which means "chicken".
-
- Member
- Posts: 307
- Joined: Wed Oct 30, 2013 1:57 pm
- Libera.chat IRC: no92
- Location: Germany
- Contact:
Re: Yet another esoteric programming language.
Reminds me of Brainfuck ...
But good idea, it made me (and ThePC007) laugh
But good idea, it made me (and ThePC007) laugh
Re: Yet another esoteric programming language.
Ah, Brainfuck. There's nothing more pointer based, not even assembly .no92 wrote:Reminds me of Brainfuck ...
If some supposed machine started at some predefined address, and used some memory addresses for registers, you can use program it with Brainfuck! You would output some byte by writing it to a memory address, then changing some bit in another memory address. This way, and taking in account that Brainfuck is Turing-complete, it's theorically possible to create a complete OS in Brainfuck
P.D: I have a Brainfuck example in my signature.
Happy New Code!
Hello World in Brainfuck :[/size]
Hello World in Brainfuck :
Code: Select all
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.
- AndrewAPrice
- Member
- Posts: 2299
- Joined: Mon Jun 05, 2006 11:00 pm
- Location: USA (and Australia)
Re: Yet another esoteric programming language.
With a little bit of IO, like change ,. to port in/port out rather than stdin/stdout.KemyLand wrote:This way, and taking in account that Brainfuck is Turing-complete, it's theorically possible to create a complete OS in Brainfuck .
My OS is Perception.