Posts

 // Dream-OE.cpp : Defines the entry point for the console application. // #include <stdio.h> #include <stdlib.h> #include <iostream.h> int askQuestion(char * string_) {     printf("%s: ", string_);     getc(stdin);     printf("\r\n");     return 0; } int main(int argc, char *argv[]) {     int keyPress;       printf("Dream-OE 0.0.1.2pre-alpha Starting up!\r\n");     printf("press enter to continue\r\n");     getc(stdin);     printf("press 1 and press enter for a brief introduction.\r\n");     printf("press 2 and press enter to run a script.\r\n");     printf("press x and press enter to exit.\r\n");     askQuestion("poop");                           ...

thoughts

 first things first, im making my OE either lgpl or even more open like totally freeware. second, i've been thinking up an api where the programs can work with 'plugs' where they can both export and import functions, and on the fly - know what these functions accomplish. then it could provide a function for every function it request. this would evolve natural viruses, and it would be survival of the fittest code.   also, all programs inside the OE will be scripts. they will be assembled to a faster model on the fly.

thoughts

 i might do my operating enviornment not srictly in C but also in C++ because i like object oriented coding.
current release