public static void main(String... summary) {
	PrintStream o = System.out; 
	try { 
		o.format("- %s\n", summary[0]); 
		main(Arrays.copyOfRange(summary, 1, summary.length)); 
	} catch (ArrayIndexOutOfBoundsException e) {
	} catch (Exception e) {o.append("Ops!");}}

main(new String[] {//"Akintsev Valeriy", 
				   	"Senior Java Developer",
				   	"With more then 6 years experience", 
				   	"Deep knowledge of Java, OOP and patterns"})}

object AdditionalSkills extends App{
	print(langList(List("* Scala", 
						"* Perl", 
						"* JavaScript", 
						"* PL/SQL")))
def langList(x : List[String]) : String = 
		x match {
		 case List() => "----------------"
		 case x1 :: xs => x1 + "\n" + langList(xs)
		}}
sub My_Contacts {
	while (my ($k, $v) = each(@_[0])) {
        printf "%s\t:%s\n", $k , $v;
    }
};
My_Contacts {
	'skype' => 'mtakvel',
	'mail'  => 'mtakvel@gmail.com',};
function Interests(text)
{ $("body #ps").html(text); }
$(document).ready(function() { 
		ps("My family, study, travels, reads, photo") 
});
select 'BR, Valeriy Akintsev' from dual
comments powered by Disqus