Tagged Questions
Esoteric programming languages are programming languages that are designed as a test of the boundaries of programming-language design, as a joke, or as a proof of concept. These languages are not intended for mainstream use. The first esoteric language was INTERCAL. Brainf*ck is another well-known esoteric programming-language.
45
votes
25answers
4k views
Code Golf: Fractran
The Challenge
Write a program that acts as a Fractran interpreter. The shortest interpreter by character count, in any language, is the winner. Your program must take two inputs: The fractran program ...
14
votes
13answers
1k views
Are there any major programming languages not based in English?
Are there any major languages whose keywords, functions etc. are not in English? Not wrappers or locales, but the original language.
There's no particular reason why they have to be. Learning the ...
10
votes
6answers
931 views
Is there a language designed for code golf?
I am not really a fan of code golf, but I have to wonder, is there an esoteric language designed for it?
I mean a language with following properties:
Common programs may be expressed in very short ...
7
votes
5answers
496 views
Have you ever tried programming in Malbolge?
Have you ever tried programming in Malbolge? I have read some of the top links returned by google, here, here, here, and here. I am very intrigued by this prospect, and would like to start playing ...
6
votes
10answers
231 views
Can you help me think of problems for my programming language?
I've created an experimental toy programming language with a (now) working interpreter. It is turing-complete and has a pretty low-level instruction set.
Even if everything takes four to six times ...
5
votes
5answers
149 views
Not using an if statement in Java
This is a very odd, and quite specific question.
Ultimately I am trying to write a program convert that takes in java source, and transforms it such that it does not use (Among other things)
Arrays
...
5
votes
2answers
108 views
Infinite Counting Loop in Brainfuck
As a debugger/test program for my brainf*ck implementation, I have created the following counting loop:
+[[>+]+]
With single byte, wrapping cells and with 30k cells with wraparound, this creates ...
4
votes
15answers
1k views
Is there any practical use for an esoteric language?
Do you know any example of an esoteric language used to write any practical-use, real-world program? Is there any, however obscure, domain of computer science where an esoteric language has actually ...
3
votes
2answers
290 views
How to run Esoteric Language ZOMBIE
Can anyone please tell me how can I compile and run a program written on ZOMBIE? For example, if I wrote the following source cord to print out “hello world” on to the screen, how can I make an .exe ...
3
votes
4answers
184 views
Have you written your own esoteric (or not) language? What did it look like?
I've seen a few question regarding stackoverflow users' favorite esoteric (or not) programming languages. There are also questions regarding the implementation of languages. However, I was curious to ...
2
votes
2answers
55 views
Code obfuscation, 'Wind Talkers'-style
Back in World War II (and WWI apparently), encryption schemes used by the warring parties kept getting cracked. Then some genius who understood language realized that sending messages in an esoteric ...
2
votes
3answers
267 views
“Hello World” in Languages starting with Q, U and Y
I started a little fun project - collecting a "hello World"-program for every letter in the alphabet. For example Ada for A, Boo for B, C++ for C, D for D, Erlang for E, and so on
But i got a little ...
2
votes
1answer
103 views
How do DP and CC change in Piet?
According to the specification,
Black colour blocks and the edges of the program restrict program flow. If the Piet interpreter attempts to move into a black block or off an edge, it is stopped ...
2
votes
4answers
254 views
How can you tell if a language is a “dynamic language”?
I'm trying to get a better handle on what it really means for a language to be "dynamic". I have quite a bit of experience with Lingo, which is the scripting language for the Adobe (formerly ...
2
votes
13answers
570 views
Which non-mainstream programming language to use for a hobby project
Desired qualities:
cross-platform
threading support
network capabilities
cross-platform GUI support (either natively or through bindings)
What is not that important to me:
IDE support (emacs ...
1
vote
3answers
65 views
Advanced Java console input
As a self-practice, I'm making a BF interpreter in Java that does I/O through the console. For the most part it's fine, however, as you might be aware, BF takes input one character at a time, ...
1
vote
1answer
74 views
Is there a programming language whose declarations are similar to those used in UML?
Like:
Employee: Person
name: String
id: int
+ employeeCount(): int {
---------------
return employeecount
}
+ name():String {
return ...
1
vote
11answers
976 views
Is it worth it to learn an esoteric programming language?
Wikipedia: An esoteric programming language (sometimes shortened to esolang) is a programming language designed as a test of the boundaries of computer programming language design, as a proof of ...
0
votes
1answer
35 views
How do i find the index of a string in Golfscript?
Given a string "ABCDE", how do i find the index of occurrence of another string "C" in Golfscript?
? operator doesn't seem to work (http://www.golfscript.com/golfscript/builtin.html#?):
"C" ...
0
votes
1answer
131 views
Practical COW example program?
Has anyone written either a long or short program in COW that demonstrates what it can do? Sure, the language is a joke; but since it is Turing complete, maybe someone has written a high-level ...