Newer
Older
ubixos / src / bin / launcher / launcher.cpp
@reddawg reddawg on 24 May 2004 277 bytes I know you want this
#include <vButton.h>
#include <ubixButton.h>
#include <ubixDesktop.h>
#include <stdlib.h>

int main(void) {
  ubixDesktop * desktop = new ubixDesktop(NULL);
  if (desktop!=NULL) cout << "Desktop created" << endl;
  cout << "Vagina!!!!" << endl;
  delete desktop;
  return 0;
}