Home
Explore
Submit Search
Upload
Login
Signup
Advertisement
Check these out next
Csharp4 arrays and_tuples
Abed Bukhari
Lec 25 - arrays-strings
Princess Sam
Java Arrays
Jussi Pohjolainen
Array lecture
Joan Saño
Array in Java
Shehrevar Davierwala
Java notes 1 - operators control-flow
Mohammed Sikander
Python programming lab3 250215
profbnk
Haskell Tour (Part 3)
William Taysom
1
of
50
Top clipped slide
AITP Ruby And Rails Talk
Aug. 7, 2008
•
0 likes
0 likes
×
Be the first to like this
Show More
•
384 views
views
×
Total views
0
On Slideshare
0
From embeds
0
Number of embeds
0
Download Now
Download to read offline
Report
Technology
jasondew
Follow
Advertisement
Advertisement
Advertisement
Recommended
Arrays in java language
Hareem Naz
1K views
•
8 slides
Lecture 6
Debasish Pratihari
1.3K views
•
4 slides
Arrays in java
bhavesh prakash
978 views
•
19 slides
Session#2
Mohamed Samir
193 views
•
33 slides
Java arrays
Mohammed Sikander
439 views
•
25 slides
Arrays in java (signle dimensional array)
Talha mahmood
139 views
•
9 slides
More Related Content
Slideshows for you
(14)
Csharp4 arrays and_tuples
Abed Bukhari
•
894 views
Lec 25 - arrays-strings
Princess Sam
•
2.5K views
Java Arrays
Jussi Pohjolainen
•
7.8K views
Array lecture
Joan Saño
•
906 views
Array in Java
Shehrevar Davierwala
•
2.9K views
Java notes 1 - operators control-flow
Mohammed Sikander
•
270 views
Python programming lab3 250215
profbnk
•
268 views
Haskell Tour (Part 3)
William Taysom
•
1K views
FITC '14 Toronto - Technology, a means to an end
Thibault Imbert
•
12.7K views
Haskell Tour (Part 2)
William Taysom
•
981 views
Coding test review 2
SEMINARGROOT
•
59 views
Java arrays
BHUVIJAYAVELU
•
3.2K views
Java: Introduction to Arrays
Tareq Hasan
•
16.2K views
Arrays in Java
Abhilash Nair
•
22.2K views
Similar to AITP Ruby And Rails Talk
(20)
A limited guide to intermediate and advanced Ruby
Vysakh Sreenivasan
•
1.5K views
An overview of Python 2.7
decoupled
•
246 views
Lecture on Rubinius for Compiler Construction at University of Twente
Dirkjan Bussink
•
2K views
Ruby Language - A quick tour
aztack
•
396 views
A Taste of Python - Devdays Toronto 2009
Jordan Baker
•
1.3K views
Introduction to Python
UC San Diego
•
558 views
Ruby Programming Language
Duda Dornelles
•
521 views
A linguagem de programação Ruby - Robson "Duda" Sejan Soares Dornelles
Tchelinux
•
578 views
An introduction to Ruby
Wes Oldenbeuving
•
1.1K views
Ruby Intro {spection}
Christian KAKESA
•
1.6K views
Scala by Luc Duponcheel
Stephan Janssen
•
633 views
Groovy grails types, operators, objects
Husain Dalal
•
449 views
Blocks by Lachs Cox
lachie
•
353 views
PubNative Tracker
Andrew Djoga
•
369 views
Groovy puzzlers jug-moscow-part 2
Evgeny Borisov
•
695 views
Functional programming in ruby
Koen Handekyn
•
1.1K views
Functional Programming with Groovy
Arturo Herrero
•
13.4K views
A Few of My Favorite (Python) Things
Michael Pirnat
•
11.1K views
Introducción a Elixir
Svet Ivantchev
•
67 views
Intro to Python
OSU Open Source Lab
•
1.4K views
Advertisement
Recently uploaded
(20)
Events
Victor de Souza Fernandes
•
0 views
Digital Currency.pdf
RushiDalve
•
0 views
Manufacturing Slides Powerpoint Template.pptx
ssuser589db1
•
0 views
Trends in Cloud Computing Services | Nuvento USA
Nuvento Systems Pvt Ltd
•
0 views
Back up your email.pptx
abahalung
•
0 views
Real-time Network Streaming Innovation & Insights
confluent
•
0 views
What is the Structure and Working Principle of WDM Devices.pdf
HYC Co., Ltd
•
0 views
3DC Intro to Git Workshop
BeckhamWee
•
0 views
SoundBible
Artmiker Studios
•
0 views
Pioneering the Future of Finance: Banks and MetaMask Integration in Cryptocur...
Mobiloitte Technologies
•
0 views
How Does Grocery Delivery App Generate Revenue.pdf
Shopia Wilson
•
0 views
Class I_OSI Network Layer by CISCO.ppt
NukriTskvitaia
•
0 views
Real-time fraud detection
confluent
•
0 views
Rive
Artmiker Studios
•
0 views
Monitoring Oceans - Chris Atherton - SRD23
SURFevents
•
0 views
Interactive and collaborative AI for biodiversity monitoring and beyond - JWK...
SURFevents
•
0 views
Cutting Edge Robotics Innovation.pdf
bgoyani3
•
0 views
Addin Revit.pdf
ssuser589db1
•
0 views
How to lead in the age of Superintelligence.pptx
Prerna Kaul
•
0 views
MUCLecture_2023_1123221.pptx
NRRishi1
•
0 views
AITP Ruby And Rails Talk
Ruby and Rails Jason
Dew
Ruby
pure OO
42.methods.sort
beautiful
def fib n
return 0 unless n > 0 return 1 if [1,2].include? n fib(n-1) + fib(n-2) end puts fib(10) # => 55
Symbols
roygbiv = [:red,
:orange, :yellow, :green, :blue, :indigo, :violet] some_hash = { :bar => bar, :life => 42 }
blocks
array = [42,
bar, [x]] result = array.map do |element| element * 2 end puts result.inspect # => [84, barbar, [x, x]]
classes
Advertisement