summaryrefslogtreecommitdiff
path: root/src/user/rhello/main.cpp
blob: 750818c79610ef3ee86014e192747986917d9d63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <raleigh/w/padding.h>
#include <raleigh/w/label.h>
#include <raleigh/runtime.h>
#include <raleigh/window.h>

using namespace raleigh;

void main() {
  label l("Hello, world! Close me with Alt+F4.");
  padding p(4, RGB(bf, bf, bf), l);
  window w(p);
  start_runtime();
}