> Is it possible to make the static block evaluate to echo "hello world", that 
> then gets evaluated at runtime again?

Just to call one and the same code at compile- and at run-time? This? 
    
    
    template hw = echo "hello world!"
    static:
      hw()
    hw()
    

Reply via email to