<?php
error_reporting(E_ALL ^ E_NOTICE);
ini_set('error_reporting', E_ALL ^ E_NOTICE);
ini_set('display_errors',1);
include_once "Conjuro/Conjuro.php" ;
session_start();
//c()->showPage();
//M("Page")->call("showPage");
//M("Page")->showPage();
//M("Builder")->call("edit","index");
c()->control("pollas")->render();
c()->control("html")->render(["html"=>"<div><b>Hola</b> caracola</div>"]);
?>