var Cell = function (initial) {
      var value = initial;
      var get = function () {
        return value;
      };