This file contains hidden or 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
#! /usr/bin/env node | |
// 2つの数をたす | |
var plus = function(a,b) | |
{ | |
return a + b; | |
}; | |
// 2つの数を掛ける | |
var multiply = function(a,b) | |
{ |
NewerOlder