aboutsummaryrefslogtreecommitdiff
path: root/libraries/hug/README.SLACKWARE
diff options
context:
space:
mode:
authorWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-02-07 23:57:31 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-02-07 23:57:31 +0700
commitee82dab94de93d7fb3ba9beb04094fd528284545 (patch)
tree86d259053a61d77cd8fb21ab651bd1e8ff378fdc /libraries/hug/README.SLACKWARE
parent7c428a2538e7d01ce1b80c61de984a9ac8b6b82b (diff)
libraries/hug: Removed (no maintainer).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/hug/README.SLACKWARE')
-rw-r--r--libraries/hug/README.SLACKWARE29
1 files changed, 0 insertions, 29 deletions
diff --git a/libraries/hug/README.SLACKWARE b/libraries/hug/README.SLACKWARE
deleted file mode 100644
index eebe61c2a4ec..000000000000
--- a/libraries/hug/README.SLACKWARE
+++ /dev/null
@@ -1,29 +0,0 @@
-README.SLACKWARE for hug
-
-To use HUG, put the following at the start of your BaCon program:
-
- SETENVIRON "LANG", "C"
- INCLUDE "/usr/include/hug_imports.bac"
-
- REM Initialize the HUG library:
- INIT
-
-For example, here's the classic "Hello World" program with HUG:
-
- SETENVIRON "LANG", "C"
- INCLUDE "/usr/include/hug_imports.bac"
-
- REM Initialize the HUG library:
- INIT
-
- REM Create widgets:
- window = WINDOW("Hello", 110, 30)
- text = MARK("Hello, world!", 100, 20)
-
- REM Attach text widget to main window:
- ATTACH(window, text, 5, 5)
-
- REM endless gtk loop
- DISPLAY
-
-The HUG documentation can be read online here: http://basic-converter.org/hugdoc.html