PasteRack.org
Paste # 90565
2017-09-07 05:48:39

Fork as a new paste.

Paste viewed 97 times.


Embed:

  1.  
  2.  
  3.  
  4. (define (digitos a)
  5.   (
  6.     if (not (equal? a 0))
  7.        (
  8.           print (mod a 10)
  9.           print (quotient a 10)
  10.          (cons (mod a 10) (digitos 0))
  11.        )
  12.  
  13.  
  14.   )
  15. )
  16.  
  17. print (digitos 125 )
  18.  
  19.  
  20.  

=>

load-handler: expected a `module' declaration for `pasterack' in "paste 90565", but found something else

Check that paste includes #lang?