| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
slib - SLIB interface (use slib). SLIB itself is not included
in Gauche distribution. If you don't have it on your system,
get it from http://www-swiss.ai.mit.edu/~jaffer/SLIB.html.
This module redefines require, shadowing the Gauche's original
require. If it gets a symbol as an argument, it works as
SLIB's require, while if it gets a string, it works as
Gauche's require. The same applies to provide and
provided?.
All SLIB symbol bindings, loaded by require, stay in the
module slib.
(use slib) ; load and set up slib (require 'getopt) ; load SLIB's getopt module (require "foo") ; load Gauche's foo module |