Current Path : /proc/3/root/usr/local/rvglobalsoft/rvglobalsoft/modules/default/classes/ |
Current File : //proc/3/root/usr/local/rvglobalsoft/rvglobalsoft/modules/default/classes/Output.pm |
#!/use/bin/perl package DefaultOutput; ##LICENSE## use strict; use warnings; use Class::Std::Utils; { sub new { my ($class, $opt) = @_; my (%hash); my ($this) = bless( \%hash, $class); return $this; } sub echo { my ($this, $msg) = @_; return "$msg"; } } 1;