logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Embperl::Syntax::ASP - ASP syntax module for Embperl

Author

       Gerald Richter <richter at embperl dot org>

Description

       The module add the ASP syntax to Embperl. That mean when you select ASP as syntax, Embperl understand the
       two following tags:

       <%   %>
           Between <% and %> you can put any Perl code that should be executed.

       <%=   %>
           Between <%= and %> you can place a valid Perl expression and the result of the expression is inserted
           instead of the <%= %> block.

Name

       Embperl::Syntax::ASP - ASP syntax module for Embperl

See Also

       Embperl::Syntax

perl v5.34.0                                       2022-02-06                                   Syntax::ASP(3pm)

Synopsis

           [$syntax ASP $]

           <% $a = 1 ; %>
           <table>
               <% foreach (1..5) { %>
                   <tr>
                       <td><%= $_ %></td>
                       <td><%= $a += 2 %></td>
                   </tr>
               <% } %>
           </table>

See Also