We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4409860 commit 4836c2cCopy full SHA for 4836c2c
test/ninety_nine_bottles_of_beer.pss
@@ -5,7 +5,7 @@ extend component pss_top {
5
6
static const int n_verses = 100;
7
8
- action print_one_line {
+ action print_one_verse {
9
rand int verse_number;
10
rand string line1;
11
rand string line2;
@@ -41,12 +41,12 @@ extend component pss_top {
41
}
42
43
action print_lyrics {
44
- print_one_line a_line;
+ print_one_verse a_verse;
45
46
activity {
47
schedule {
48
repeat (i:n_verses) {
49
- a_line with { verse_number == i; }
+ a_verse with { verse_number == i; }
50
51
52
0 commit comments