Sha256: b1aa7a0ad8fa145dcb3a89839f8768cb0aa4b2a22cf476bb8c2f72d7159daebf
Contents?: true
Size: 499 Bytes
Versions: 188
Compression:
Stored size: 499 Bytes
Contents
<% #include <string> #include <iostream> #include <sstream> int main(int argc, char *argv[]) { std::stringstream _buf; %> <html> <body> <p>Hello <%= argv[0] %>!</p> <table> <tbody> <% for (int i = 1; i < argc; i++) { %> <tr bgcolor="<%= i % 2 == 0 ? "#FFCCCC" : "#CCCCFF" %>"> <td><%= i %></td> <td><%= argv[i] %></td> </tr> <% } %> </tbody> </table> </body> </html> <% std::string output = _buf.str(); std::cout << output; return 0; } %>
Version data entries
188 entries across 162 versions & 41 rubygems