roxen.lists.pike.general

Subject Author Date
Re: Pike & Python Martin Stjernholm <mast[at]lysator[dot]liu[dot]se> 11-12-2008
Dave Walton <<dw-pike[at]digger.net>> wrote:

> if (0 < x < 10):	handy.  kinda wish PHP and Pike could do that.

Pike can, but you have to call the < operator as a function, i.e.
using the backtick name:

  if (`< (0, x, 10)) ...

Looks a bit uglier, tho.