vSS.k 273 B

12345678
  1. // vSS.k -> Spread Sheet
  2. vSSHead:: `name`price`stock;
  3. vSSData:: +`chips`candy`pepsi!((1;5);(3;5);(2;5));
  4. vSSUpdateDeps: {[]}; // updates dependencies (no deps in this SS)
  5. // This will update the value going through the dependency table
  6. vSS: {[idx;nv] vSSData[idx]: nv;};