Skip to content

Instantly share code, notes, and snippets.

@S2
Created March 3, 2015 04:00
Show Gist options
  • Save S2/3a06db3e694625f3e67b to your computer and use it in GitHub Desktop.
Save S2/3a06db3e694625f3e67b to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use 5.20.2;
use strict;
use warnings;
use utf8;
use feature 'signatures' ;
sub hoge($a , $b){
return $a + $b;
}
say hoge(10 , 20);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment