Programming environment for editing various of my live apps without restarting them.
sign = function(v)
  if v < 0 then return -1 end
  if v > 0 then return 1 end
  return 0
end