Re: Can someone help confirm a bug?
- Posted by DerekParnell (admin) Aug 25, 2009
- 847 views
Results for Windows XP SP3
C:\Projects\eu_proj\eu40\trunk\demo\preproc>eui -version Euphoria Interpreter 4.0.0 development (r2584) for Windows Using System Memory C:\Projects\eu_proj\eu40\trunk\demo\preproc>eui etml.ex -i hello.etml -o hello.pp.etml C:\Projects\eu_proj\eu40\trunk\demo\preproc>type hello.pp.etml include std/text.e include std/map.e as m public function template(m:map data) sequence result = "" result &= """ <html> <head><title>Hello, """ result &= m:get(data, "name") result &= """</title></head> <body> <h1>Say Hello</h1> """ for i = 1 to 10 do result &= """ <p>Hello, """ result &= m:get(data, "name") result &= """!</p> """ end for result &= """ </body> </html> """ return result end function C:\Projects\eu_proj\eu40\trunk\demo\preproc>