アルフォート生活🍫💴

3年後の自分のために、知識をアルフォートの箱に詰めていきます💴

【Ruby】テスト用プログラム

require './[ファイル名]'

class Main
    def self.start
        obj = Sqluser.new()
        obj.setValue
        str = obj.database
    end
end

class Test
    class << self
        def start

        end
        def foo
            puts'\'foooooooooooooo'
        end
    end
end

# Test.start
# Test.foo

# メソッドを実行
puts Main.start