Merge pull request #4640 from funtaps/patch-1

[groovy/en] Small groovy bang fix
This commit is contained in:
Marcel Ribeiro-Dantas 2023-04-10 15:11:06 -03:00 committed by GitHub
commit c035db7a67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -193,7 +193,7 @@ def say(msg = 'Hello', name = 'world') {
assert 'Hello world!' == say()
// Right most parameter with default value is eliminated first.
assert 'Hi world!' == say('Hi')
assert 'learn groovy' == say('learn', 'groovy')
assert 'learn groovy!' == say('learn', 'groovy')
/*
Logical Branching and Looping