summaryrefslogtreecommitdiff
path: root/prolog/problems/lists/sum_2/en.py
blob: 8db0e67acad1add45b16c2dcc4b7dac51f646bd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
id = 118
name = 'sum/2'
slug = 'find the sum of all elements in list'

description = '''\
<p><code>sum(L, Sum)</code>: <code>Sum</code> is the sum of all elements in the list <code>L</code>.</p>
<pre>
  ?- sum([1,2,3], Sum).
    Sum = 6.
</pre>'''

hint = {}