Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <HTML>
  2. <BODY>
  3.  
  4. <%
  5. boolean condition;
  6. condition = false;
  7. if(condition=true){
  8. %>
  9. <P>Hello, world
  10. <%
  11. } else {
  12. %>
  13. <P>Goodbye, world
  14. <%
  15. }
  16. out.println(condition);
  17.  
  18. %>
  19.  
  20.  
  21. </BODY>
  22. </HTML>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement