summaryrefslogtreecommitdiff
path: root/ipl/procs/core.icn
blob: 14c288859526130b12f246f2477c3e75710bf93f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
############################################################################
#
#	File:     core.icn
#
#	Subject:  Procedures for general application
#
#	Author:   Gregg M. Townsend
#
#	Date:     August 4, 2000
#
############################################################################
#
#   This file is in the public domain.
#
############################################################################
#
#  Links to core modules of the basic part of the library, as defined
#  in the Icon Language book (3/e, p.179) and Graphics book (p.47).
#
############################################################################
#
#  Links: convert, datetime, factors, io, lists, math, numbers,
#     random, records, scan, sets, sort, strings, tables
#
############################################################################

link convert
link datetime
link factors
link io
link lists
link math
link numbers
link random
link records
link scan
link sets
link sort
link strings
link tables