Snippets

sironekotoro Perl入学式 2018 第2回 練習問題 scalar_practice.pl

Created by sironekotoro

File scalar_practice.pl Added

  • Ignore whitespace
  • Hide word diff
+#!/usr/bin/env perl
+use strict;
+use warnings;
+
+# Perl入学式 2018 第2回 練習問題
+# scalar_practice.pl
+
+my $seminar_name = 'Perl Entrance';
+my $date = '2018/05/26';
+my $venue_name = 'Gaiax';
+my $next_yapc_pref = 'TOKYO';
+
+print "$seminar_name\n";
+print "$date\n";
+print "$venue_name\n";
+print "$next_yapc_pref\n"
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.