Kaynağa Gözat

Convert ruby examples into lisp

Juanito Fatas 12 yıl önce
ebeveyn
işleme
1521e8f280
1 değiştirilmiş dosya ile 4 ekleme ve 4 silme
  1. 4 4
      koans/scoring-project.lsp

+ 4 - 4
koans/scoring-project.lsp

@@ -40,10 +40,10 @@
40 40
 ;
41 41
 ; Examples:
42 42
 ;
43
-; score([1,1,1,5,1]) => 1150 points
44
-; score([2,3,4,6,2]) => 0 points
45
-; score([3,4,5,3,3]) => 350 points
46
-; score([1,5,1,2,4]) => 250 points
43
+; (score '(1 1 1 5 1)) => 1150 points
44
+; (score '(2 3 4 6 2)) => 0 points
45
+; (score '(3 4 5 3 3)) => 350 points
46
+; (score '(1 5 1 2 4)) => 250 points
47 47
 ;
48 48
 ; More scoring examples are given in the tests below:
49 49
 ;