Fara Way
0
Q:

Perl FileHandlng

#!/usr/bin/perl 
  
# Opening a File in Read-only mode 
open(r, "<", "Hello.txt"); 
  
# Printing content of the File 
print(<r>); 
  
# Closing the File 
close(r); 
0

New to Communities?

Join the community