summaryrefslogtreecommitdiff
path: root/prolog/problems/world_data/all_capitals_1/sl.py
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-10-18 16:26:00 +0200
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-10-18 16:26:00 +0200
commitd0dd9cd28eec6007c2f80737a47895498b0ee9f7 (patch)
tree64c5f61d862de22609a70b9fb313e08dd236f4a0 /prolog/problems/world_data/all_capitals_1/sl.py
parent64e1f9eb2e18910e4ecc7299c53868445d3ed9b1 (diff)
Prolog: add more world_data exercises
Diffstat (limited to 'prolog/problems/world_data/all_capitals_1/sl.py')
-rw-r--r--prolog/problems/world_data/all_capitals_1/sl.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/prolog/problems/world_data/all_capitals_1/sl.py b/prolog/problems/world_data/all_capitals_1/sl.py
new file mode 100644
index 0000000..cf3413f
--- /dev/null
+++ b/prolog/problems/world_data/all_capitals_1/sl.py
@@ -0,0 +1,13 @@
+name = 'all_capitals/1'
+slug = 'glavna mesta'
+
+description = '''\
+<p><code>all_capitals(List)</code>: <code>List</code> je seznam vseh glavnih mest na svetu.</p>
+<pre>
+?- all_capitals(List).
+ List = ['Tirana', 'Athina', 'Skopje', 'Beograd', …]
+</pre>
+<p>Uporabna dejstva so podana v obliki <code>country(Name, ID, Capital, CapitalProvince, Size, Population)</code>.</p>
+'''
+
+hint = {}