Data update

This commit is contained in:
Ingy döt Net 2024-10-16 18:07:41 -07:00
parent 81fd053722
commit 52a6ef48dd
10248 changed files with 63654 additions and 6775 deletions

View file

@ -4,18 +4,18 @@ ProDOS is an open-source command-based programming language created by Riley Hou
===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>
<syntaxhighlight lang="prodos">printline Hello, World!</syntaxhighlight>
The command "printline" is used to display the line "Hello, World". For clarification, in Java the alternative would be:
<lang Java>public class HelloWorld
<syntaxhighlight lang="java">public class HelloWorld
{
public static void main(String[] args)
{
System.out.println("Goodbye, World!");
}
}</lang>
}</syntaxhighlight>
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.
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.