{-- Single Line Comment --} {-- Multi Line Comments --} {-- #1 : Test variables --} {{ $test1 }} {-- #2 : Test expressions --} {{ (1 + 1) * (1 + 1) }} {-- #3 : Test built in functions --} {{ strtolower('TEST TEXT') }} {-- #4 : Test html tags --}

{{ ($test1 == 'TEST #1') ? md5($test1) : '' }}{{ $test1 }}{-- This souldn't be printed --}

{-- #5 : Test unclosed print expression are printed as normal text --}
{{ $test1
{-- #6 : Test spaces doesn't effect the printing expression --} {{ $test1 }}