Game Development Reference
In-Depth Information
Figure 4.15
Committing source code.
Extending Hello World
Open up Visual Studio and edit the Hello World program to look like the
following.
public static void Main(string[] args)
{
System.Console.WriteLine("Let's make some games.'');
System.Console.ReadKey();
}
The program is developing nicely. We don't want to lose these changes so we had
better do one more commit. Return to the Hello World project directory and
select SVN Commit again. Program.cs will come up as modified. Add a useful
comment such as ''Changed hello world text'' and click OK. Now the code and
source control are both up to date.
 
Search WWH ::




Custom Search