mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-11 01:46:37 +00:00
1d22d300fa
This reverts commit99c6fbd517, reversing changes made to868b429853.
9 lines
129 B
Plaintext
9 lines
129 B
Plaintext
--TEST--
|
|
"range" function
|
|
--TEMPLATE--
|
|
{{ range(low=0+1, high=10+0, step=2)|join(',') }}
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
1,3,5,7,9
|