Re: Can someone help confirm a bug?

new topic     » goto parent     » topic index » view thread      » older message » newer message

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> 

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu