docs.ss
atom? : SchemeValue -> bool
annotation? : SchemeValue -> bool
end-annotation : annotation -> annotation
write-file : (list-of atom) [string]-> void which consumes a list of annotated symbols and prints them out as a "file"; it returns nothing. if the string argument is present, it is interpreted as a file name: the words are written to this file; if the file exists, it is deleted
which consumes a list of annotated symbols and prints them out as a "file"; it returns nothing. if the string argument is present, it is interpreted as a file name: the words are written to this file; if the file exists, it is deleted
Sample session: set teachpack to docs.ss and execute:
> (annotation? 0) #f > (annotation? ') #t > (end-annotation 0) end-annotation: not an annotation: 0 > (write-file (list 'a 'b)) a b