version 1.2, 2017/07/02 22:28:19
|
version 1.5, 2017/07/03 12:23:48
|
Line 1
|
Line 1
|
// Attention, la défintion de __RPLC_MAIN n'est obligatoire que parce qu'on |
// Attention, la définition de __RPLC_MAIN n'est obligatoire que parce qu'on |
// ne compile pas les bibliothèques avec mkrplso puisque à ce moment, |
// ne compile pas les bibliothèques avec mkrplso puisque à ce moment, |
// l'environnement RPL/2 n'est pas encore installé. |
// l'environnement RPL/2 n'est pas encore installé. |
|
|
Line 9
|
Line 9
|
libraryName(sets); |
libraryName(sets); |
|
|
declareSubroutine(onLoading) |
declareSubroutine(onLoading) |
notice(stdout, "\nSets library V1R1 for RPL/2(C) 2017 BERTRAND Joel\n"); |
notice(stdout, "\nSets library V1R1 for RPL/2 (C) 2017 BERTRAND Joel\n"); |
notice(stdout, "Sets library loaded.\n\n"); |
notice(stdout, "Sets library loaded.\n\n"); |
endSubroutine |
endSubroutine |
|
|
Line 17 declareSubroutine(onClosing)
|
Line 17 declareSubroutine(onClosing)
|
notice(stdout, "Sets library unloaded.\n\n"); |
notice(stdout, "Sets library unloaded.\n\n"); |
endSubroutine |
endSubroutine |
|
|
exportExternalFunctions(union); |
exportExternalFunctions( |
|
complement, |
|
intersection, |
|
union); |
|
|
// vim: ts=4 |
// vim: ts=4 |