当前位置: 首页 > 软件库 > 云计算 > >

Perl5-IDEA

Perl5 plugins for IntelliJ IDEA
授权协议 View license
开发语言 Java
所属分类 云计算
软件类型 开源软件
地区 不详
投 递 者 皮献
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

Perl5 plugins for IntelliJ IDEA

Support with PayPal|Support with Yandex.Money

This repo contains a bundle of Perl5-related plugins for JetBrains IDEs.

Current versions of plugins may be found in JetBrains repo.

This repository contains following plugins:

  • Perl plugin (plugin) - base plugin with perl & pod support and all basicfeatures (repo).
  • Template Toolkit Support (lang.tt2)
  • Mojolicious Support (lang.mojo)
  • Mason framework (lang.mason.framework) - core plugin of Mason plugins:
  • Embedded Perl Support (lang.embedded) - adds support for php-like perl syntax with <? and ?> markers.

You can always build and install current development version of any plugin:

  1. Clone this repo to your hard drive
  2. Go to the repo directory
  3. Run ./gradlew buildPlugin (this builds all plugins from the repo)
  4. In the plugins dialog of your IDE, use Install plugin from disk... option
  5. Choose plugin file in the build/distributions directory of the respective plugin root

If you want to participate in development, don't forget to read our contribution policy.

YourKit supports open source projects with its full-featured Java Profiler.

Optimized using YourKit Java Profiler

Wiki: https://github.com/hurricup/Perl5-IDEA/wiki

  • 起因 最近在一家公司实习,目前在语音识别的一个项目里面打杂,前段时间docker坏了又要配置perl5的环境(项目不能使用高版本的perl5). 创建目录 在根目录下创建目录: perl5/ 在perl5内创建目录: perlbrew/ 在perlbrew内创建目录: build/ dists/ 安装perlbrew 这里在不影响本机的perl下,使用perlbrew进行版本管理 apt-get

  • 原文链接: http://www.ibm.com/developerworks/cn/linux/1311_daiwj_perl5vs6/index.html 前言 Perl6 相对于 Perl5 做了革命性的改革,拥有丰富的语言特征、支持多线程、正则表达式更加灵活,而且仍然坚持 Perl 一贯理念:实用实用更实用。本篇文章将抽取一些 Perl6 中相对 Perl5 的增强部分,从主要的基本语法,

  • 概述 让我们从Perl 5和Perl 6中的Sigils概述开始: 符号 Perl5 Perl6 @   Array  Positional %   Hash  Associative &  Subroutine  Callable $  Scalar  Item *  Typeglob N/a @(Array vs. Positional) 在perl 5中定义数组时,可以创建一个可扩展的标量值

  •   注意:本人安装是基于reahat linux系统,Ubuntu请注意依赖包的源下载安装命令的差异(apt-get),并且注意用户权限的 1.下载安装包访问地址 https://www.perl.org/get.html#unix_like 2.解压并安装 #安装依赖包 yum install -y gcc.x86_64 yum -y install zlib-devel #解压并进入目录

 相关资料
  • 本书以简洁醒目的方式向读者介绍了Perl语言的基础内容,从书中读者可以获得丰富的、日常编程所需的Perl 5信息。

  • 简介 尽管与Perl5相比很相似,Perl6依旧包含了大量的改动。本章节会帮助Perl5程序员更好的向Perl6过渡。 本章节将会简洁明了地教你如何将Perl5程序以最直接的方式改写到Perl6中,而不会去介绍Perl6中那些强有力的新操作符。 Hello World Perl6中仍然保留了print(),但是相比之下使用say()会更加直接一点。 此方法今后可能会变得比较通用,因为它能够在行尾自

  • 一、require函数 用require函数可以把程序分割成多个文件并创建函数库。例如,在myfile.pl中有定义好的Perl函数,可用语句require ("myfile.pl"); 在程序中包含进来。当Perl解释器看到这一语句,就在内置数组变量@INC指定的目录中寻找文件myfile.pl。如果找到了,该文件中的语句就被执行,否则程序终止并输出错误信息: Can't find myfile

  • 一、引用简介 引用就是指针,可以指向变量、数组、哈希表(也叫关联数组)甚至子程序。Pascal或C程序员应该对引用(即指针)的概念很熟悉,引用就是某值的地址,对其的使用则取决于程序员和语言的规定。在Perl中,可以把引用称为指针,二者是通用的,无差别的。引用在创建复杂数据方面十分有用。 Perl5中的两种引用类型为硬引用和符号引用。符号引用含有变量的名字,它对运行时创建变量名并定位很有用,基本上,

相关阅读

相关文章

相关问答

相关文档