Rubyをつつくー基礎も大事。はじめましてRuby。
puts "hello indori"
i = 0
while i < 10
print( " ", i)
i += 1
end
puts "\n"
puts "good-by\n"
情報処理技術全般を気まぐれにつつくゆるいブログです。技術解説記事のソースは専門書と実務経験です。
puts "hello indori"
i = 0
while i < 10
print( " ", i)
i += 1
end
puts "\n"
puts "good-by\n"