terse

Has anybody had real experience with the Terse Assembler ?

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 be a useful development on Assembler Languages, but I was wondering if anyboy has used Terse in a real world project and did it offer adva...

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 "?" and the ":" mean in this context. ...