<?php
/**
 * Created by PhpStorm.
 * User: hferreira
 * Date: 18/12/2018
 * Time: 23:56
 */

class HF extends Knowledge
{

    public function __construct()
    {
        $this->helloworld();
    }
    

    public function helloworld()
    {
        $this->load->view("Hello World! I'm here for you!");
        return;

    }
}