mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 01:30:22 +00:00
16 lines
235 B
Plaintext
16 lines
235 B
Plaintext
$ var name = 'Frank';
|
|
$ var colors = ['red', 'green', 'blue'];
|
|
|
|
<h1>
|
|
Hello ${name}!
|
|
</h1>
|
|
|
|
<ul if(colors.length)>
|
|
<li style={color: color} for(color in colors)>
|
|
${color}
|
|
</li>
|
|
</ul>
|
|
<div else>
|
|
No colors!
|
|
</div>
|