2009-05-26から1日間の記事一覧

たのしいRuby

single quote と double quote は意味が違う print("print1 hello\truby\n") puts print('print2 hello\truby\n') puts print1 hello ruby print2 hello\truby\n 文字列接続 print('print3 hello' , 'ruby') puts print('print4 hello' + 'ruby') puts print…