larger.js 392 B

12345678
  1. export var largerDocs = {
  2. name: 'larger',
  3. category: 'Relational',
  4. syntax: ['x > y', 'larger(x, y)'],
  5. description: 'Check if value x is larger than y. Returns true if x is larger than y, and false if not.',
  6. examples: ['2 > 3', '5 > 2*2', 'a = 3.3', 'b = 6-2.8', '(a > b)', '(b < a)', '5 cm > 2 inch'],
  7. seealso: ['equal', 'unequal', 'smaller', 'smallerEq', 'largerEq', 'compare']
  8. };