Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Loïc Barrault
supports_cours
adcd87f98140a1c1663ad7560134308112ab497e
adcd87f98140a1c1663ad7560134308112ab497e
Switch branch/tag
supports_cours
text_processing
TextProcessing_Lectures_RobMark
Exams3110
Exam3110_0506
code
begin_end_print.pl
Find file
Normal view
History
Permalink
begin_end_print.pl
121 Bytes
Newer
Older
textprocessing updates
Loïc Barrault
committed
Mar 08, 2021
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
while
(
<>
)
{
if
(
/<BEGIN>/
)
{
while
(
<>
)
{
if
(
/<END>/
)
{
last
;
}
else
{
print
;
}
}
}
}