Changes between Version 17 and Version 18 of SecondPage


Ignore:
Timestamp:
06/07/16 19:30:47 (8 years ago)
Author:
mramamoo@asu.edu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SecondPage

    v17 v18  
    5454<h1 style="text-align: right; color: blue">HTML Test</h1>
    5555}}}
     56
     57
     58
     59== Python ==
     60{{{
     61#!python
     62class Test:
     63
     64    def __init__(self):
     65        print "Hello World"
     66if __name__ == '__main__':
     67   Test()
     68}}}
     69
     70== Perl ==
     71my ($test) = 0;
     72if ($test > 0) {
     73    print "hello";
     74}