aboutsummaryrefslogtreecommitdiff
path: root/captain/captian.f90
blob: e115280a3c95622e1e88d2bf5bdba422e71578f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
program captain
use captain_db
implicit none


    call initialize_db("/tmp/test.db")
    
    call add_player_db("windows", "asdf")
    
    call shutdown_db()
    
end program captain