yuuki blog

プログラミング をアプトプットしています。

2020-11-17から1日間の記事一覧

Ruby クラスとインスタンス

問題 class Article def initialize(author, title, content) @author = author @title = title @content = content end end こちらのコードを使い下記の結果を出力する問題です。 著者: 阿部 タイトル: Rubyの素晴らしさについて 本文: Awesome Ruby! 自分…