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

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