http://e-p-i-c.sourceforge.net/
EPIC is an open source Perl IDE based on the Eclipse platform.
Features supported are syntax highlighting, on-the-fly syntax check, content assist, perldoc support, source formatter, templating support and a Perl debugger.
A regular expression plugin is also available.
Archive for the ‘Perl’ Category
Perl IDE based on the Eclipse platform.
Jul
25
Perl syntax
Jun
14
Basic Script
##############################################################################
# name: main
# purpose: entry point of the script
##############################################################################
# @ARGV holds all script command line arguments (pos 0 is not prog-name)
# $0 holds script filename
print “hello world\n”;
Data Types
##############################################################################
# name: main
# purpose: show the basic datatypes
##############################################################################
### scalars (ints, floats, strings)
$float = 3.14; # can hold real / whole […]
