10 lines
220 B
HTML
10 lines
220 B
HTML
|
@(message: String)
|
||
|
|
||
|
@main("Play with Scala.js") {
|
||
|
<h2>Play and Scala.js share a same message</h2>
|
||
|
<ul>
|
||
|
<li>Play shouts out: <em>@message</em></li>
|
||
|
<li>Scala.js shouts out: <em id="scalajsShoutOut"></em></li>
|
||
|
</ul>
|
||
|
}
|