mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-11 18:06:46 +00:00
13 lines
187 B
Plaintext
13 lines
187 B
Plaintext
--TEST--
|
|
"max" function
|
|
--TEMPLATE--
|
|
{{ max([2, 1, 3, 5, 4]) }}
|
|
{{ max(2, 1, 3, 5, 4) }}
|
|
{{ max({2:"two", 1:"one", 3:"three", 5:"five", 4:"for"}) }}
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
5
|
|
5
|
|
two
|