Originally posted by MelestedRabbit
i want to make a simple program for Windows,
i dont know any languages;
i was hoping someone knows a simple way to make one ?
cheers guys
-MelestedRabbit
Unfortunately, to create a
program, you have to know a
programming language.
The simplest language to learn (that's also fast to learn) is probably either C#.NET or Visual Basic.NET. Here are two sample programs:
Visual Basic.NET:
Module HelloWorld
Sub Main()
Console.WriteLine("Hello, world!")
End Sub
End Module
C#.NET:
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
}
}
}
You could also try a programming language like Java, which is fairly easy to learn, and is cross-platform (it runs on Windows, Mac, Linux, etc.). Here's a sample Java program:
public class HelloWorld
{
public static void Main(String[] args)
{
System.out.println("Hello, world!");
}
}
Usually, I recommend people start programming with Java or C# (I typically recommend Java over C#), however, in your case, if you're looking to make a single program as a hobbyist, you may actually want to consider VB.NET (Visual Basic.NET).
Here is a tutorial for Visual Basic.NET:
You must login or register to view this content.