aboutsummaryrefslogtreecommitdiff
path: root/main.c
blob: 70d6f8646f1da27a1d7f77b27263e34e54046c3e (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <bh/io.h>

int main()
{
    BH_IO *io = BH_FileNew("hello.txt");
    BH_IOOpen(io, BH_IO_WRITE);
    BH_IOWrite(io, "Hello, world!", 13, NULL);
    BH_IOFree(io);

    return 0;
}