mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-15 20:06:31 +00:00
15 lines
207 B
Plaintext
15 lines
207 B
Plaintext
--TEST--
|
|
Twig supports bitwise operations
|
|
--TEMPLATE--
|
|
{{ 1 b-and 5 }}
|
|
{{ 1 b-or 5 }}
|
|
{{ 1 b-xor 5 }}
|
|
{{ (1 and 0 b-or 0) is same as(1 and (0 b-or 0)) ? 'ok' : 'ko' }}
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
1
|
|
5
|
|
4
|
|
ok
|