version() function
- Posted by Derek Parnell <ddparnell at bigpond.com> Nov 19, 2004
- 558 views
I'm now wishing there was some obvious way of telling at runtime which version of Euphoria I'm running with. Currently I'm doing this, but I'm open to suggestions... include machine.e global function eu_version() if routine_id("crash_routine") = -1 then return 2.4 else return 2.5 end if end function -- Derek Parnell Melbourne, Australia