very new to java
i am very new as you can see. what am i doing wrong here. any help
would nice
public class Welcome
{
// main method begins execution of Java application
public static void main( String args[] )
{
System.out.printf( %s \n%s \n,
"Hi, my name is xxx.", "I was born in xxx.");
} // end method main
} // end class Welcome
.
Relevant Pages
- Re: A question about order of execution?
... > I have a question about what I think is a problem with order of execution ... > Public Class Page ... > Public Sub Fill_Datagrid ... > When I execute code LIKE this, I often get a SQL error because the ... (microsoft.public.dotnet.framework.aspnet) - Re: A question about order of execution?
... >> I have a question about what I think is a problem with order of execution ... >> Public Class Page ... >> End Sub ... > sense that if I now set a label to the variable in the button code it ... (microsoft.public.dotnet.framework.aspnet) - error handling - byref params not modified if an exception is thro
... I noticed the byref parameters doesn't get changed if during the execution of ... public class WSClient{ ... public class WSServer: System.Web.Services.WebService{ ... public void Execute{ ... (microsoft.public.dotnet.framework.webservices) - Re: Multithreading - writing to same file C#
... > to log the response of the DAL methods and log ... > public class yyy ... > private Mutex mut = new Mutex; ... > public static void Main ... (microsoft.public.dotnet.languages.csharp) - Re: Is it possible to "decipher" Java serialization data?
... that saved a class called "UserInfo". ... public class save { ... public static void main{ ... public String getUserName() { ... (comp.lang.java.programmer) |
|