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