1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-12 09:44:24 +02:00

Small groovy bang fix

This commit is contained in:
Funtov Kirill
2023-04-10 19:52:49 +03:00
committed by GitHub
parent 107b30ce2c
commit 4a2463eca0

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