blob: 8f50979c0da2eb1954c146bb688fd8adb739e889 (
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
|
############################################################################
#
# File: allpat.icn
#
# Subject: Procedure to produce all n-character patterns of characters
#
# Author: Ralph E. Griswold
#
# Date: May 14, 1996
#
############################################################################
#
# This file is in the public domain.
#
############################################################################
#
#
#
############################################################################
#
# Requires:
#
############################################################################
#
# Links:
#
############################################################################
procedure allpat(s, i)
if i = 0 then return ""
suspend !s || allpat(s, i - 1)
end
|