Post "Never Give Up" in your Language

"Kabhi haar mat mano"
(Urdu, the language spoken in Pakistan)
 
لا تستلم أبدا....

(La Tastalsm Abadan)

:p
 
Pes etmek yok yola devam.
i just wonder is there any turkish people here ? :D

in dutch will be it;geef nooit op.
 
punjabi = ਕਦੇ ਹਾਰ ਨਾ ਮੱਨੌ
 
Code:
/*********************************************************************
 * Main class for guiding all actions.
 *
 * Copyright (C) 2012 by imperial109.  All rights reserved.
 * Provided under GNU License
 *
 * @author imperial109
 * @version 1.00 2012-05-03
**/
public class Driver
{
/*********************************************************************
 * main method.
**/
  public static void main (String[] args)
  {
    Life life = new Life();
    life.neverGiveUp(yourLife.txt);
  }
} // public class Driver


/*********************************************************************
 * Class for your life.
 *
 * Copyright (C) 2012 by imperial109.  All rights reserved.
 * Provided under GNU License
 *
 * @author imperial109
 * @version 1.00 2012-05-03
**/
public class Life
{
/*********************************************************************
 * main method.
**/
    private void neverGiveUp(Scanner file)
    {
        while(file.hasNextLine() && 1 > 0)
        {
            Work doWork = new Work();
            doWork.plan();
            doWork.execute();
            doWork.test();
            doWork.profit();
            doWork.enjoyLife();
            neverGiveUp(file);
        }
    } // private void neverGiveUp(Scanner file)
}
 
Back
Top