One line dispatches and renders. A route always ends in view(), apply() or location().
prop question = 'Which stack wins?'
route GET poll => view($this->question, 'Phlo Poll')
// Compiles to readable PHP:
class poll extends obj {
public $question = 'Which stack wins?';
public static function GETpoll(){
return view(phlo('poll')->question, 'Phlo Poll');
}
}