Manually specifying bin sizes - +Inf can't be specified?

I can’t find any way to make +Inf seen as a float.

   // This line works fine, but you can not copy-and-paste it's output (via flux cli)
   //foo = linearBins(start:0.0, width:10.0, count:10)

   // This does not work (in any form that I can find - can't specify "+Inf")
   foo = [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, +Inf]

   from(bucket: "environment")
     |> range(start:-60m)
     |> filter(fn: (r) => r._measurement == "zwave_power_w" and r.inst_id == "1" and r.node_id ==              "2")
     |> histogram(bins: foo)