Skip to content

Instantly share code, notes, and snippets.

@yamanetoshi
Created November 11, 2013 23:02
Show Gist options
  • Save yamanetoshi/7422189 to your computer and use it in GitHub Desktop.
Save yamanetoshi/7422189 to your computer and use it in GitHub Desktop.
EoPL Ex 2.16 test
(use gauche.test)
(add-load-path ".")
(load "env")
(test-start "list-find-last-position")
(test-section "list-find-last-position")
(test* "list-find-position"
1
(list-find-position 'a '(c a b a c a d e)))
(test* "list-find-last-position"
5
(list-find-last-position 'a '(c a b a c a d e)))
(test-end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment