simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

cube.js (252B)


      1 export var cubeDocs = {
      2   name: 'cube',
      3   category: 'Arithmetic',
      4   syntax: ['cube(x)'],
      5   description: 'Compute the cube of a value. The cube of x is x * x * x.',
      6   examples: ['cube(2)', '2^3', '2 * 2 * 2'],
      7   seealso: ['multiply', 'square', 'pow']
      8 };