[ create a new paste ] login | about

Link: http://codepad.org/UjEJF3HH    [ raw code | fork ]

C++, pasted on Nov 25:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Button.H>
#include <FL/Fl_Input.H>
#include <FL/Fl_Output.H>


typeof(Fl::run()) main(void) {

  Fl_Window *window = 0;
  window = new Fl_Window(1000,800, "hi");
  window->show();

  return ( Fl::run() );
  
}


Create a new paste based on this one


Comments: