Cod:
Class Salut
{
   public string Nume = "Alex";
   public string Job = "Developer Desktop/Mobile/Web";
   public string Mesaj =  "Va Salut!";

   public void spuneSalut()
   {
        out.print( "Ma numesc "+ this.Nume +", lucrez ca "+ this.Job +" si "+ this.Mesaj );        
   }
}

Salut sal = new Salut();
sal.spuneSalut();