Tagged Questions

3
votes
18answers
624 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 …
0
votes
1answer
263 views

Javascript comma operator

When combining assignment with comma (something that you shouldn't do, probably), how does javascript determine which value is assigned? Consider these two snippets: function nl(x) { document.write(x …