We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cab0ba commit 3d27211Copy full SHA for 3d27211
id/news/_posts/2008-05-28-21-trik-trik-ruby.md
@@ -135,7 +135,7 @@ bisa langsung mendefinisikan variabel lokal “sekaligus” ketika operasi
135
sedang berlangsung:
136
137
{% highlight ruby %}
138
-(z ||= [])
+(z ||= []) << 'coba'
139
{% endhighlight %}
140
141
**8 – Penggunaan yang-bukan-string maupun yang-bukan-simbol sebagai hash
@@ -165,7 +165,13 @@ yang pendek-pendek:
165
166
queue = []
167
%w{hello x world}.each do |word|
168
- queue
+ queue << word and puts "Added to queue" unless word.length < 2
169
+end
170
+puts queue.inspect
171
+# Output:
172
+# Added to queue
173
174
+# ["hello", "world"]
175
176
177
**10 – Menentukan eksekusi kode**
0 commit comments