我在学习Perl,有一个问题。我设计了一个简单的程序,但当我运行它时,出现了这个错误:
Can not exec "usleep": The file or directory does not exist at line 22 example.pl.
Can not exec "usleep": The file or directory does not exist at line 65 example.pl.
如何解决?谢谢
您可能不想执行外部程序,而是想查看Time::HiRes模块。这可以用一种更直接的方式来做你想做的事情。
use Time::HiRes 'usleep';
usleep($microseconds);