Added more comments
This commit is contained in:
parent
5c82246632
commit
00af81de1c
@ -1,3 +1,7 @@
|
||||
/*
|
||||
* This file contains the source of a program used to demonstrate BTUI's 24-bit
|
||||
* color support by printing a rapidfire rainbow.
|
||||
*/
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
#include "btui.h"
|
||||
|
4
C/test.c
4
C/test.c
@ -1,3 +1,7 @@
|
||||
/*
|
||||
* This file contains a basic example of BTUI C API usage.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include "btui.h"
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
#!/usr/bin/env lua
|
||||
--
|
||||
-- This file contains a basic example of BTUI Lua usage.
|
||||
--
|
||||
local btui = require("btui")
|
||||
|
||||
btui(function(bt)
|
||||
|
@ -1,3 +1,8 @@
|
||||
#!/usr/bin/env python3
|
||||
#
|
||||
# This file contains a simple test program for demonstrating some basic Python
|
||||
# BTUI usage.
|
||||
#
|
||||
from btui import open_btui
|
||||
|
||||
with open_btui() as bt:
|
||||
|
Loading…
Reference in New Issue
Block a user