git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6439 626c5289-ae23-0410-ae9c-e8d60b6d4f22
9 lines
169 B
Scheme
9 lines
169 B
Scheme
(load-library 'newobject2 "newobject2.so")
|
|
|
|
(define f (make <Foo>))
|
|
|
|
(slot-set! f 'dummy 14)
|
|
(if (not (= (slot-ref f 'dummy) 14))
|
|
(error "Bad dummy value"))
|
|
|
|
(exit 0)
|