id = 167 name = 'number/3' slug = 'numbers with meaning' description = '''\

Write a DCG with the starting symbol number for the language of non-negative integers. The numbers may contain leading zeros. The meaning of a word in this language is the numeric value of the represented number.

  ?- number(N, [1,2,3,4], []).
    N = 1234.
''' hint = {}