Perl Character 1. Easy for use 2. Can do everything 3. Run quite fast 4. Code hard for reading Perl Suitable Area 1. 90% file process; 10% others process; 2. Write CGI script; Support website CPAN: https://search.cpan.org Install Perl 1. Download package 2. Install package 3. set path parameter by adding C:\Perl\bin; 4. create one test file test.pl with print "Hello World" 5. in command windows input: perl test.pl Integrate into Eclipse 1. install EPIC package 2. Install PadWalker package http://blog.163.com/crazy20070501@126/blog/static/12865946520121011102620418 Example $a="Hello World"; print $a; Format if (...) {...} else if (...) {...} else {...} while (...) {...} Number 1. Standard Variables including Integer / Variable / String 2. use float to save all number 3. support: +, -, *, /, %( Remainder 8%5=3 ), **( Exponentiation 2**3=8 ) 4. write Bin: 0b11111111 5. write ...