Skip to content

Instantly share code, notes, and snippets.

@yamasushi
Created August 6, 2012 09:35
Show Gist options
  • Select an option

  • Save yamasushi/3272723 to your computer and use it in GitHub Desktop.

Select an option

Save yamasushi/3272723 to your computer and use it in GitHub Desktop.
gtabulate試作
(use gauche.generator)
(define (gtabulate n init-proc)
(gunfold (cut >= <> n) init-proc (cut + <> 1 ) 0 ) )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment