This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$title = [['ゼロの使い魔', 'ヤマグチノボル', 'MF文庫'], | |
['バカとテストと召還獣', '井上賢二', 'ファミ通文庫'], | |
... ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$title = [['ゼロの使い魔', 'ヤマグチノボル', 'MF文庫'], | |
['バカとテストと召還獣', '井上賢二', 'ファミ通文庫'], | |
... | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use Data::Dumper; | |
print "hello gist world!!" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
$have_title = {'ゼロの使い魔' => [1,2,3], | |
'バカとテストと召還獣' => [1,2,3,4,5], | |
'涼宮ハルヒ' => [1,2,3,4,5,6]} | |
class Ranobe | |
def buy_new_books(new_title) | |
new_title.each do |new_book| | |
title = new_book[0] | |
volume = new_book[1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
$have_title = {'Bob' => [1,2,3], | |
'Michael' => [1,2,3,4,5], | |
'Tom' => [1,2,3,4,5,6]} | |
class Ranobe | |
def buy_new_books(new_title) | |
new_title.each do |new_book| | |
title = new_book[0] | |
volume = new_book[1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
$have_title = {'Bob' => [1,2,3], | |
'Michael' => [1,2,3,4,5], | |
'Tom' => [1,2,3,4,5,6]} | |
class Ranobe | |
def buy_new_books(new_title) | |
new_title.each do |new_book| | |
title = new_book[0] | |
volume = new_book[1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
$have_title = {'Bob' => [1,2,3], | |
'Michael' => [1,2,3,4,5], | |
'Tom' => [1,2,3,4,5,6]} | |
class Ranobe | |
def buy_new_books(new_title) | |
new_title.each do |new_book| | |
title = new_book[0] | |
volume = new_book[1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
$have_title = {'BakaTesu' => [1,2,3], | |
'ZeroNo' => [1,2,3,4,5], | |
'Haruhi' => [1,2,3,4,5,6]} | |
class Ranobe | |
def buy_new_books(new_title) | |
new_title.each do |new_book| | |
title = new_book[0] | |
volume = new_book[1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$have_title = { | |
'BakaTesu' => | |
{ | |
'volumes' => [1,2,3], | |
'publisher' => 'ファミ通文庫', | |
}, | |
'ZeroNo' => | |
{ | |
'volumes' =>[1,2,3,4,5], | |
'publisher' => 'ほげほげ', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$have_title = { | |
'BakaTesu' => | |
{ | |
'volumes' => [1,2,3], | |
'publisher' => 'ファミ通文庫', | |
}, | |
'ZeroNo' => | |
{ | |
'volumes' => [1,2,3,4,5], | |
'publisher' => 'ほげほげ', |
OlderNewer