├── README.md ├── hello-world.pl └── .github └── FUNDING.yml /README.md: -------------------------------------------------------------------------------- 1 | # Perl-Projects -------------------------------------------------------------------------------- /hello-world.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | # Modules used 4 | use strict; 5 | use warnings; 6 | 7 | # Print function 8 | print("Hello World\n"); 9 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [kokonior] 4 | patreon: kokonior 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 13 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 14 | --------------------------------------------------------------------------------