Category:ProDOS: Difference between revisions

no edit summary
(Created page with "{{stub}}{{language}} ProDOS is an open-source command-based programming language created by Riley Houlahan. It is the first language of its kind to be created entirely in Windows...")
 
No edit summary
 
(7 intermediate revisions by 2 users not shown)
Line 1:
{{stub}}{{language}}
ProDOS is an open-source command-based programming language created by Riley Houlahan. It is the first language of its kind to be created entirely in Windows 7 Batch (see batch[[:Category:Batch fileFile|Batch File]]). It is currently in betadevelopmental form and is expected to be released in version 1.0 by early next year (2012).
 
===Overview===
ProDOS is a command-based language. This term refers to any form of language that uses built-in commands to function, instead of strings of keywords to function. For example:
 
<lang ProDOS>printline Hello, World!</lang>
 
The command "printline" is used to display the line "Hello, World". For clarification, in Java the alternative would be:
<lang Java>public class HelloWorld
{
public static void main(String[] args)
{
System.out.println("Goodbye, World!");
}
}</lang>
 
As you can see, the difference is quite significant. The command "printline" is pre-defined, this means that the user does not have to define classes,etc.
 
===Future Implementations===
ProDOS has not yet reached a release stage, but due to it being only a few months left until it is able to be released, ProDOS 1 will be ready to be released for public distribution by early 2012.
Anonymous user