Tagged Questions
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 ...
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 ...
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
3answers
265 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
13answers
569 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
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 ...