Hello from Perl! print(strftime('%m/%d/%Y %Z', localtime)); 09/08/2024 CEST my @i = (1..10); for(@i) { print("$_", "\n"); } 1 2 3 4 5 6 7 8 9 10