Entries from 2013-12-01 to 1 month

Ruby入門メモ

ドットインストールでRubyについて学習し始めたのでメモメモ。 なお他の言語でも共通のところ(オブジェクト指向の概念、慣習)は省いてます。 アウトプット(print out) print "Hello world" /改行なし puts "Hello world" /改行あり p "Hello world" /型の…

Ruby入門メモ2

文字列 puts "hello \n world" → ”hello 改行 world" puts 'hello \n world' → 'hello \n world' putsの中で変数使う → puts "my name is #{last_name} " 文字コード #encoding: utf-8−文字列メソッド 長さ図る "hello".length -> 5 大文字に変換 "hello".up…