mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
16 lines
204 B
Plaintext
16 lines
204 B
Plaintext
<%@ Page Language="VB" %>
|
|
|
|
<html>
|
|
<body>
|
|
<p>2 + 3 = <%
|
|
If Something() Then
|
|
Response.write(2 + 3);
|
|
} else {
|
|
Response.write(3 + 2);
|
|
}
|
|
End If
|
|
%></p>
|
|
<p>2 + 3 = <%=2 + 3%></p>
|
|
</body>
|
|
</html>
|