Skip to content

Instantly share code, notes, and snippets.

View kakikubo's full-sized avatar

kakikubo kakikubo

View GitHub Profile
@kakikubo
kakikubo / gist:cf3b66bf4d93c5dd4807
Created May 9, 2015 14:22
http://www.amazon.co.jp/dp/4798043761 にあるコードの一部(nodeで動かす)
#! /usr/bin/env node
// 2つの数をたす
var plus = function(a,b)
{
return a + b;
};
// 2つの数を掛ける
var multiply = function(a,b)
{