Skip to content

Instantly share code, notes, and snippets.

@tuki0918
Last active December 29, 2015 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tuki0918/7613725 to your computer and use it in GitHub Desktop.
Save tuki0918/7613725 to your computer and use it in GitHub Desktop.
プレゼンテンプレ

タイトルタイトルタイトル


サブタイトルサブタイトルサブタイトル

qr

タイトルタイトルタイトル


  • テキストテキストテキストテキストテキスト

 

テキスト

テキストテキストテキストテキストテキスト

テキストテキストテキストテキストテキスト

テキストテキストテキストテキストテキスト

タイトルタイトルタイトル


  • リストリストリスト
  • リストリストリスト
  • リストリストリスト
  • リストリストリスト
  • リストリストリスト
  • リストリストリスト

タイトルタイトルタイトル


  • リストリストリスト

    • リストリストリスト
  • リストリストリスト

    • リストリストリスト

タイトルタイトルタイトル


テーブル テーブル テーブル
テーブル テーブル テーブル
テーブル テーブル テーブル
テーブル テーブル テーブル

タイトルタイトルタイトル


class Person
  def initialize(name, age)
    @name, @age = name, age
    @address = nil
  end
  attr_reader :name, :age
  attr_accessor :address
end

jhon = Person.new("Jhon", 15)
p jhon.name
jhon.address = "USA, Earth"

タイトルタイトルタイトル


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment