! !$Author: joelevin $ !$Date: 2011-03-24 11:33:26 -0500 (Thu, 24 Mar 2011) $ !$Revision: 11724 $ !$HeadURL: https://svn.weru.ksu.edu/weru/weps1/trunk/weps.src/src/util/lib_sax/tstsax1/tstsax1.f95 $ ! program example01 use flib_sax use MyHandler01 type(xml_t) :: fxml integer :: iostat call open_xmlfile("test.xml",fxml,iostat) if (iostat /= 0) stop "Cannot open file." call xml_parse(fxml, & start_element & ) end program example01