File Coverage

blib/lib/Acme/MetaSyntactic/oulipo.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Acme::MetaSyntactic::oulipo;
2 2     2   992910 use strict;
  2         10  
  2         114  
3 2     2   407 use Acme::MetaSyntactic::List;
  2         16067  
  2         177  
4             our @ISA = qw( Acme::MetaSyntactic::List );
5             our $VERSION = '1.004';
6 2     2   527 use utf8;
  2         196  
  2         44  
7              
8             =encoding utf-8
9              
10             =head1 NAME
11              
12             Acme::MetaSyntactic::oulipo - The Oulipo theme
13              
14             =head1 DESCRIPTION
15              
16             This theme contains the initials of the members of the French literary
17             group Oulipo, created by Raymond Queneau (RQ) and François Le Lionnais
18             (FLL) in 1960. These initials are commonly used in place of a member's
19             full name.
20              
21             See the official Oulipo web site at L.
22              
23             =cut
24              
25             __PACKAGE__->init(
26             { names => join ' ',
27             map join( '', /\b([A-Z])/g ),
28             grep /^[A-Z]/,
29             split /\n/, << '=cut' } );
30              
31             =head2 Members
32              
33             =over 4
34              
35             =item *
36              
37             Noël ARNAUD (1919-2003), founding member.
38              
39             =item *
40              
41             Michèle AUDIN (1954-2025), joined in 2009.
42              
43             =item *
44              
45             Valérie BEAUDOUIN (1968-), joined in 2003.
46              
47             =item *
48              
49             Marcel BÉNABOU (1939-), joined in 1970.
50              
51             =item *
52              
53             Jacques BENS (1931-2001), founding member.
54              
55             =item *
56              
57             Claude BERGE (1926-2002), founding member.
58              
59             =item *
60              
61             Eduardo BERTI (1964-), joined in 2014.
62              
63             =item *
64              
65             André BLAVIER (1922-2001), foreign correspondent.
66              
67             =item *
68              
69             Paul BRAFFORT (1923-2018), joined in 1961.
70              
71             =item *
72              
73             Italo CALVINO (1923-1985), joined in 1974.
74              
75             =item *
76              
77             François CARADEC (1924-2008), joined in 1983.
78              
79             =item *
80              
81             Bernard CERQUIGLINI (1947-), joined in 1995.
82              
83             =item *
84              
85             Ross CHAMBERS (1932-2017), joined in 1961.
86              
87             =item *
88              
89             Stanley CHAPMAN (1925-2009), joined in 1961.
90              
91             =item *
92              
93             Samuel DESHAYES (1978-), joined in 2026.
94              
95             =item *
96              
97             Marcel DUCHAMP (1887-1968), joined in 1962.
98              
99             =item *
100              
101             Jacques DUCHATEAU (1929-2017), founding member.
102              
103             =item *
104              
105             Luc ETIENNE (1908-1984), joined in 1970.
106              
107             =item *
108              
109             Frédéric FORTE (1973-), joined in 2005.
110              
111             =item *
112              
113             Paul FOURNEL (1947-), joined in 1972.
114              
115             =item *
116              
117             Anne F. GARRÉTA (1962-), joined in 2000.
118              
119             =item *
120              
121             Michelle GRANGAUD (1941-2022), joined in 1995.
122              
123             =item *
124              
125             Jacques JOUET (1947-), joined in 1983.
126              
127             =item *
128              
129             LATIS (1913-1973), founding member.
130              
131             =item *
132              
133             François LE LIONNAIS (1901-1984), founder.
134              
135             =item *
136              
137             Hervé LE TELLIER (1957-), joined in 1992.
138              
139             =item *
140              
141             Étienne LÉCROART (1960-), joined in 2012.
142              
143             =item *
144              
145             Jean LESCURE (1912-2005), founding member.
146              
147             =item *
148              
149             Daniel LEVIN BECKER (1984-), joined in 2009.
150              
151             =item *
152              
153             Guillaume MARIE (1979-), joined in 2026.
154              
155             =item *
156              
157             Pablo MARTÍN SÁNCHEZ (1977-), joined in 2014.
158              
159             =item *
160              
161             Harry MATHEWS (1930-2017), joined in 1973.
162              
163             =item *
164              
165             Michèle MÉTAIL (1950-), joined in 1975.
166              
167             =item *
168              
169             Ian MONK (1960-2025), joined in 1998.
170              
171             =item *
172              
173             Oskar PASTIOR (1927-2006), joined in 1992.
174              
175             =item *
176              
177             Georges PEREC (1936-1982), joined in 1967.
178              
179             =item *
180              
181             Raymond QUENEAU (1903-1976), founder.
182              
183             =item *
184              
185             Jean QUEVAL (1913-1990), founding member.
186              
187             =item *
188              
189             Louise ROSE (1996-), joined in 2026.
190              
191             =item *
192              
193             Pierre ROSENSTIEHL (1933-2020), joined in 1992.
194              
195             =item *
196              
197             Jacques ROUBAUD (1932-2024), joined in 1966.
198              
199             =item *
200              
201             Olivier SALON (1955-), joined in 2000.
202              
203             =item *
204              
205             Albert-Marie SCHMIDT (1901-1966), founding member.
206              
207             =back
208              
209             =cut
210              
211             =head1 CONTRIBUTOR
212              
213             Philippe "BooK" Bruhat, co-creator (with Estelle Souche) of
214             the first Oulipo web site, back in 1995.
215              
216             =head1 CHANGES
217              
218             =over 4
219              
220             =item *
221              
222             2026-01-26 - v1.004
223              
224             Updated with three new members,
225             and the date of death of recently passed members
226             in Acme-MetaSyntactic-Themes version 1.057.
227              
228             =item *
229              
230             2014-09-15 - v1.003
231              
232             Updated with two new members,
233             added the date each member joined the group,
234             in Acme-MetaSyntactic-Themes version 1.042.
235              
236             =item *
237              
238             2012-10-08 - v1.002
239              
240             Updated with a new member,
241             added the list of Oulipo member names (with activity dates),
242             in Acme-MetaSyntactic-Themes version 1.022.
243              
244             =item *
245              
246             2012-05-14 - v1.001
247              
248             Updated with an C<=encoding> pod command
249             in Acme-MetaSyntactic-Themes version 1.001.
250              
251             =item *
252              
253             2012-05-07 - v1.000
254              
255             Updated with the new Oulipo members since 2007, and
256             received its own version number in Acme-MetaSyntactic-Themes version 1.000.
257              
258             =item *
259              
260             2005-06-27
261              
262             Introduced in Acme-MetaSyntactic version 0.28.
263              
264             =back
265              
266             =head1 SEE ALSO
267              
268             L, L.
269              
270             =cut
271              
272             1;
273