GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
1
Releases
Issues
Pull requests
Labels
Priorities
Milestones
Wiki
Fork
: 0
RubyTerakoya
/
web
Transfer to URL with SHA
Find file
Newer
Older
tree:
143140b2f8
Branches
Tags
×
master
web
/
2019
/
lectures
/
program
/ while.rb
HIROSE Yuuji
on 8 Jul 2019
116 bytes
Put space bettween puts/print method and bare string argument.
Raw
Blame
History
#!/usr/bin/env ruby # -*- coding: utf-8 -*- aisatu = 0 while aisatu < 5 puts "こんにちは" aisatu += 1 end