This page is READ-ONLY. It is generated from the old site.
All timestamps are relative to 2013 (when this page is generated).
If you are looking for TeX support, please go to VietTUG.org
All timestamps are relative to 2013 (when this page is generated).
If you are looking for TeX support, please go to VietTUG.org
ruby fun: a << a
thật quái chiêu :)
Thật quái chiêu, khi thêm một mảng vào chính nó
1 >> a = [1,2,3]
2 >> a << a
3 => [1, 2, 3, [....]]
4 >> a.last
5 => [1, 2, 3, [....]]
6 >> a.size
7 => 4
8 >> a.last.last.last
9 => [1, 2, 3, [....]]
10 >> a.last.last.last.last.last.last.last.last
11 => [1, 2, 3, [....]]
Có cái gì đó không bình thường ở đây, và cũng rất thú vị để tìm hiểu :)
Comments