Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Pygments / tests / examplefiles / ssp / test.ssp
Size: Mime:
<%@ val someName: String = "someDefaultValue" %>
<% import com.acme.MySnippets._ %>
<html>
<body>
<h1>Hello ${someName}%</h1>

<ul>
<%= for (person <- people) { %>
  <li>${person.name}</li>
<% } %>
</ul>