Files
milsko/example.c
NishiOwO 9f96056a1a things
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@19 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-09-28 09:50:28 +00:00

15 lines
246 B
C

/* $Id$ */
#include <Milsko/Milsko.h>
int main(){
MilskoWidget window = MilskoCreateWidget(MilskoWindowClass, NULL, 0, 0, 640, 480);
MilskoApply(window,
MilskoNwidth, 480 * 2,
MilskoNtitle, "hello world",
NULL);
MilskoLoop(window);
}