-
Notifications
You must be signed in to change notification settings - Fork 2
/
02.rb
291 lines (223 loc) · 3.68 KB
/
02.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
#!/usr/bin/ruby -w
def test
puts 'oi'
# class Fixnum
# def +
# 'oi'
# end
# end
end
['uno', 'due', :asds].each{|num| puts num}
test
puts 1.class
puts 2+2
#v = {|num| puts num}
name = "oi"
puts "\aYour name is #{name}\t\t\t\to\a", "2", 9, 9.class
print :oi, 'iu', '9', 'asds'
puts <<text
sdf
sdf
sdfdsfsd
sdf
dsfds
sdf
text
puts %Q(asdsada\nsd)
puts "asdas"[0]
('a'..'z').each do |num|
puts num
end
puts "jean".upcase!
puts rand
if true then puts :oi
puts 'sad'
end
puts :oi if false
case '2'
when '0'..'9'
puts '0..10'
when 11
puts 'oi'
end
4.times {|x| puts "loop #{x}"}
def interact (time, value)
time.times do |i|
yield value, i
end
end
interact 20, 'oi' do |v1, v2|
puts "#{v1} - #{v2}"
end
puts :oi_aqui.object_id
Rubens = 'rubens'
#Rubens = 'outro'
puts Rubens
puts :aqui_tem_symbol
hash = {:a => 'a1', :b => 'b2', :c => 'c3'}
hash.each {|key, value| puts value}
r = Hash.[] :a1 => 'opa', '2' => '-oi-', :a3 => 'oie/', '2' => '-o2-'
puts r
r.delete '2'
puts r
Hash.[](:leia => "Princess from Alderaan", :la => "Rebel without a cause", :luke => "Farmboy turned Jedi").each do |key, value|
puts value
end
Hash[:leia => "Princess from Alderaan", :la => "Rebel without a cause", :luke => "Farmboy turned Jedi"].each do |key, value|
puts value
end
puts '-----'
#puts [0..10].to_a
r = [:teste, 'oi', 6, 7, 8]
#puts r[2..3]
r.push 'oi2', 'oi'
range = 0..10
(r.concat Range.new(2, 6).to_a).push 'funciona'
r.push 'asdsd'.upcase
r.<< 2
#puts (0..10).to_a
puts r.join" "
t = "\t"
puts t*2+'here'
'testes'.scan(/../) {|l| puts l}
puts 'y' if 'number9' =~ /[0-9]/
puts '2+2=4'.sub('2','5')
puts '2+2=4'.gsub('2','5')
1.upto 2 do |number|
puts "#{number} Ruby loops, ah-ah-ah!"
end
4.downto(1) {|x| puts x}
5.step 50, 5 do |x|
puts x
end
puts 98.6.to_s
puts 4.9.to_i
puts 5.to_f
puts '1'.next, '9'.next
nxt = 'Next'
20.times do
puts nxt = nxt.next
end
def anything
'nada disso rola'
'oie'
end
def otherthing
'oie2'
end
puts anything
puts '----------'
def thing (*obj)
obj.each do |num|
print "#{num}."
if num.class == Fixnum
print ' NUMpq '
end
if num.is_a? Integer
print ' NUM '
end
print "\n"
end
end
thing 10000000000000000, 2
puts '----------'
#def ==(oVal)
# print 'oi'
# if oVal.is_a?(Integer)
# print 'oi'
# if(oVal == @value)
# return true
# else
# return false
# end
# end
#end
class Chocolate
def initialize
puts 'oi'
end
def eat
puts 'That tasted great!'
end
end
my_chocolate = Chocolate.new
Choco = Chocolate
puts Choco.new.eat.class
## SEND: 'conceito de smalltalk'
puts '1234'.send 'length'
class Integer
def more (num=1)
self + num
end
def self.metodo
puts '--metodo--'
end
class << self
def shape
"strawberry-ish"
end
end
end
puts 21.more
v = 21.more 20
puts v
Integer.metodo
puts Integer.shape
puts 'eh bacana
escrever assim'
i0 = 1
loop{
i1 = 2
puts defined? i0
puts defined? i1
break
}
if true
i2 = 3
end
puts defined? i0
puts defined? i1
puts defined? i2
class Counter
@@counter=0
def initialize
@@counter += 1
end
def self.what
@@counter
end
end
eval "Counter.new;"*5
puts Counter::what
puts '----------'
class B
def go
A2
end
end
class A
A2 = 'a2'
class B
def go
A2
end
end
end
ab = A::B.new
puts ab.go
puts A::A2
puts '----------'
puts 'REGEX'
puts 'obaoba'.match(/(a)(o)/)
puts $`+ '"' + $& + '"' + $'
puts $+ # ultimo ()
puts $1 + '&' + $2
puts $~
puts '----------'
$\ = "-cuzon\n" # posso fazer print = puts
print 'eh um'
$, = ' VIR '
print 'agora', 'eh', 'mais', 'legal'
puts "asd"
$; = 'i' # default eh nil
puts 'print$;'.split