本文将教大家怎样用10个步骤完成给Apache Spark贡献代码这个任务:)
到 Apache Spark 的github 页面内点击 fork 按钮 你的github帐户中会出现 spark 这个项目 本地电脑上, 使用 git clone [你的 spark repository 的 github 地址] 例如: git clone [email protected]:gchen/spark.git 本地得到一个叫 spark 的文件夹
本文将教大家怎样用10个步骤完成给Apache Spark贡献代码这个任务:)
到 Apache Spark 的github 页面内点击 fork 按钮 你的github帐户中会出现 spark 这个项目 本地电脑上, 使用 git clone [你的 spark repository 的 github 地址] 例如: git clone [email protected]:gchen/spark.git 本地得到一个叫 spark 的文件夹
#!/usr/bin/ruby | |
############# Day 1 ############# | |
# Print the string “Hello, world.” | |
puts 'Hello, world' | |
# For the string “Hello, Ruby”, find the index of the word“Ruby”. | |
puts 'Hello, Ruby'.index('Ruby') |