From 00af81de1c6396482ebc9f10d1c9ac2e9db64681 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 25 Apr 2020 21:51:25 -0700 Subject: [PATCH] Added more comments --- C/rainbow.c | 4 ++++ C/test.c | 4 ++++ Lua/test.lua | 4 ++++ Python/test.py | 5 +++++ 4 files changed, 17 insertions(+) diff --git a/C/rainbow.c b/C/rainbow.c index 9feca1e..309ffca 100644 --- a/C/rainbow.c +++ b/C/rainbow.c @@ -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 #include #include "btui.h" diff --git a/C/test.c b/C/test.c index 2f5bdd6..0e79e51 100644 --- a/C/test.c +++ b/C/test.c @@ -1,3 +1,7 @@ +/* + * This file contains a basic example of BTUI C API usage. + */ + #include #include "btui.h" diff --git a/Lua/test.lua b/Lua/test.lua index eb7f048..ff2b2cb 100644 --- a/Lua/test.lua +++ b/Lua/test.lua @@ -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) diff --git a/Python/test.py b/Python/test.py index 0d6de17..1c4274d 100644 --- a/Python/test.py +++ b/Python/test.py @@ -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: