This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################################## | |
| # 入力ファイル(Unix系OS Macも含む)から出力ファイル(Windows)に書き出すRubyのプログラム | |
| # 入力ファイルはテキストファイルである | |
| # テキストはランダムに改行されている | |
| # 文字がn文字を超えていたらn文字で改行する | |
| # 実行方法はコマンドラインから次のように打ち込む。Ruby必須 | |
| # $ ruby newline.rb | |
| ################################################## | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################################## | |
| # 入力ファイルから出力ファイルに書き出すRubyのプログラム | |
| # 入力ファイルはテキストファイルである | |
| # テキストはランダムに改行されている | |
| # 文字がn文字を超えていたらn文字で改行する | |
| # 実行方法はコマンドラインから次のように打ち込む。Ruby必須 | |
| # $ ruby newline2.rb | |
| ################################################## | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // Kind.swift | |
| // ExamRealm1 | |
| // | |
| // Created by Sakura on 2018/01/22. | |
| // Copyright © 2018年 Sakura. All rights reserved. | |
| // | |
| import Foundation | |
| import RealmSwift |
OlderNewer