aboutsummaryrefslogtreecommitdiff
path: root/src/main.adb
blob: 9c9d5e6ca5848163355c71771a0a17151558291b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24


--  Programmed by Jedidiah Barber
--  Licensed under the Sunset License v1.0

--  See license.txt for further details


with

    FLTK,
    Adapad;


function Main
    return Integer is
begin

    Adapad.Show;
    return FLTK.Run;

end Main;