require 'nitro' class Hello def index %{ hello world
test } end #index def test( name, password ) %{ The time is #{Time.now}

The name is : #{name}.
The password is : #{password}. } end #test end #Hello class