simple-squiggle

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

string.js (323B)


      1 export var stringDocs = {
      2   name: 'string',
      3   category: 'Construction',
      4   syntax: ['"text"', 'string(x)'],
      5   description: 'Create a string or convert a value to a string',
      6   examples: ['"Hello World!"', 'string(4.2)', 'string(3 + 2i)'],
      7   seealso: ['bignumber', 'boolean', 'complex', 'index', 'matrix', 'number', 'unit']
      8 };