summaryrefslogtreecommitdiff
path: root/prolog/problems/lists_advanced/sum_2/en.py
blob: 767a6f4327e505caf76e1afc0cdaf48f361c8c15 (plain)
1
2
3
4
5
6
7
8
9
10
11
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 = {}