本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
TechnikNews
/
PublicAPIs
镜像来自
https://github.com/public-apis/public-apis
關注
1
收藏
2
複製
0
程式碼
問題
0
版本發佈
0
Wiki
活動
瀏覽代碼
Initial skeleton of parsing text file
pull/385/head
Dave Machado
7 年之前
父節點
184e4c3dd2
當前提交
6e1da9a1a3
共有
1 個檔案被更改
,包括
9 行新增
和
0 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-0
build/validate.rb
+ 9
- 0
build/validate.rb
查看文件
@@ -0,0 +1,9 @@
#!/usr/bin/env ruby
args = ARGV
filename = args[0]
File.foreach(filename).with_index do |line, line_num|
line_num += 1
puts "#{line_num}: #{line}"
end
Write
Preview
Loading…
取消
儲存