<?php

/**
 * Description of Cli
 *
 * @author Arkadiusz Rychlik <a.rychlik at eppe.com.pl>
 */
class Rtn_Cli {

	static function write($txt = '') {
		echo $txt;
	}

	static function writeln($txt = '') {
		static::write($txt);
		echo "\n";
	}

}
