Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
7answers
4k views

Question mark in JavaScript

I came across the following line in a JS function (it was an RGB to HSB color converter, if you must know) hsb.s = max != 0 ? 255 * delta / max : 0; I'm wondering if someone can explain what the ...
0
votes
0answers
65 views

Terse Programming Language Spec.?

Does someone have the language specification for the Terse Programming Language? It seems that the mail address of the creator from terse.com is not working anymore.
0
votes
2answers
146 views

terse code for comparing 4 numbers

I've to compare 4 variables a,b,c,d if any of them is -1 return false. and How mush terse this could be ? may be some mathematical operation could be done !! I dont like wasting so many characters or ...
0
votes
3answers
289 views

Has anybody had real experience with the Terse Assembler? [closed]

I'm interested in playing with assembler (again) as a diversion from high level languages like Smalltalk, and came across the Terse Assembler Site. The syntax looks quite interesting, and appears to ...