examples: annotate examples
[nit.git] / lib / ai / examples / queens.nit
index d25e129..2e33ff6 100644 (file)
@@ -14,7 +14,7 @@
 # The constraint is that two queens cannot be on the same row, column or diagonal.
 #
 # Eg. a solution to the 8-queens problem is
-# ~~~
+# ~~~raw
 # +--------+
 # |Q.......|
 # |....Q...|
@@ -28,7 +28,7 @@
 #
 # This program takes an integer n as argument then display all solutions for the
 # n-queens proglem (ie. on a n*n board).
-module queens
+module queens is example
 
 import ai::backtrack