summaryrefslogtreecommitdiff
path: root/prolog/problems/lists/sum_2/en.py
blob: fb47a1f5bce20f7ea1a5ffef34b47ca9d099136f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# coding=utf-8

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 = {}