- Joined
- Aug 11, 2010
- Messages
- 628
- Reaction score
- 1
- Trophies
- 0
- Age
- 36
- Location
- In the middle of gun fire.
- Website
- www.awsomisoft.com
- XP
- 220
- Country

Hi all!
As I was working on DS App Studio, I was asking myself 'Why can I just make a programming language for making windows applications?'
So, I started working on what I called Solfix. It is a programming language that simplifies code into smaller steps. This is C# code of a hello world project:
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
ÂÂÂÂclass Program
ÂÂÂÂ{
ÂÂÂÂÂÂÂÂstatic void Main(string[] args)
ÂÂÂÂÂÂÂÂ{
ÂÂÂÂÂÂÂÂÂÂÂÂConsole.WriteLine("Hello, World!");
ÂÂÂÂÂÂÂÂÂÂÂÂConsole.ReadLine();
ÂÂÂÂÂÂÂÂ}
ÂÂÂÂ}
}
Here is a sample project from Solfix:
Code:
csole.say("Hello, World!");
csole.read();
This language is still in progress, but so far, I have added:
~ Ways to convert strings to integers.
~ Ways to read text from a console.
~ Ways to create windows applications.
There is more that you can do, but these are the basic functions. It isn't much yet, but here is some code for a simple application:
Code:
csole.say("Enter a name:");
string number = csole.getlnval();
csole.say("" + number + "");
win32.newapp(640, 480, true, true, 0, number);
csole.read();
Hope you like how it is going.








