mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
11 lines
107 B
Plaintext
11 lines
107 B
Plaintext
<var a=4/>
|
|
---
|
|
<% a=10 %>
|
|
${a}
|
|
<% if (true) { %>
|
|
HELLO
|
|
<% } %>
|
|
<% if (false) { %>
|
|
WORLD
|
|
<% } %>
|
|
--- |