We currently do this ```r dt[, `:=`(double_x = x * 2)] ``` Which is now more cleanly expressed as ```r dt[, let(double_x = x * 2)] ```