使用严格,使用警告,使用诊断 - 找不到包文件CLION

时间:2017-07-18 19:42:08

标签: perl warnings clion strict

我故意省略了引号来检查use diagnostics;是否有效。代码是一个简单的Hello World程序:

#!usr/bin/perl -w

use strict;
use warnings;
use diagnostics;

print "Hello world";

以下是警告enter image description here

的图片

正如您所看到的,它正在发挥作用。所以我的问题是如何在pragma上处理这种黄色。

0 个答案:

没有答案