• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 04:41
CEST 10:41
KST 17:41
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
BGE Stara Zagora 2025: Info & Preview18Code S RO12 Preview: GuMiho, Bunny, SHIN, ByuN3The Memories We Share - Facing the Final(?) GSL46Code S RO12 Preview: Cure, Zoun, Solar, Creator4[ASL19] Finals Preview: Daunting Task30
Community News
GSL Ro4 and Finals moved to Sunday June 15th11Weekly Cups (May 27-June 1): ByuN goes back-to-back0EWC 2025 Regional Qualifier Results26Code S RO12 Results + RO8 Groups (2025 Season 2)3Weekly Cups (May 19-25): Hindsight is 20/20?0
StarCraft 2
General
BGE Stara Zagora 2025: Info & Preview Jim claims he and Firefly were involved in match-fixing Magnus Carlsen and Fabi review Clem's chess game. GSL Ro4 and Finals moved to Sunday June 15th Serious Question: Mech
Tourneys
Bellum Gens Elite: Stara Zagora 2025 $25,000+ WardiTV 2025 Series Sparkling Tuna Cup - Weekly Open Tournament SOOP Starcraft Global #21 $5,100+ SEL Season 2 Championship (SC: Evo)
Strategy
[G] Darkgrid Layout Simple Questions Simple Answers [G] PvT Cheese: 13 Gate Proxy Robo
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 476 Charnel House Mutation # 475 Hard Target Mutation # 474 Futile Resistance Mutation # 473 Cold is the Void
Brood War
General
BW General Discussion Will foreigners ever be able to challenge Koreans? FlaSh Witnesses SCV Pull Off the Impossible vs Shu BGH auto balance -> http://bghmmr.eu/ Battle.net is not working
Tourneys
[ASL19] Grand Finals [Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET
Strategy
I am doing this better than progamers do. [G] How to get started on ladder as a new Z player
Other Games
General Games
Nintendo Switch Thread Monster Hunter Wilds Stormgate/Frost Giant Megathread Path of Exile Mechabellum
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
LiquidLegends to reintegrate into TL.net
Heroes of the Storm
Simple Questions, Simple Answers
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
Vanilla Mini Mafia TL Mafia Community Thread TL Mafia Plays: Diplomacy TL Mafia: Generative Agents Showdown Survivor II: The Amazon
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread Things Aren’t Peaceful in Palestine Vape Nation Thread European Politico-economics QA Mega-thread
Fan Clubs
Maru Fan Club Serral Fan Club
Media & Entertainment
Korean Music Discussion [Manga] One Piece
Sports
2024 - 2025 Football Thread Formula 1 Discussion NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Cleaning My Mechanical Keyboard
TL Community
The Automated Ban List
Blogs
Heero Yuy & the Tax…
KrillinFromwales
Research study on team perfo…
TrAiDoS
I was completely wrong ab…
jameswatts
Need Your Help/Advice
Glider
Trip to the Zoo
micronesia
Poker
Nebuchad
Info SLEgma_12
SLEgma_12
Customize Sidebar...

Website Feedback

Closed Threads



Active: 17691 users

Beginning Programming: Ruby style

Blogs > Anacletus
Post a Reply
Anacletus
Profile Blog Joined April 2012
United States733 Posts
Last Edited: 2012-05-15 20:10:01
May 15 2012 01:57 GMT
#1
This blog is being written to try and help those who have no programming experience jump head first into it.




A little bit about me


I'm a fairly new programming student myself. I have most of my experience in programming in C++ and Ruby, although I have dabbled in many other languages. I've done many of the programming challenges on projecteuler and InterviewStreet and would recommend both of those sites to people who are looking for some programming challenges (links below). So back to my point, because I am a newbie too what I say may not necessarily be the best way to do something, hell, it may even be one of the worst. That doesn't detract from my overall goal of getting some of you guys immersed in programming.
  • http://projecteuler.net/
  • https://www.interviewstreet.com/challenges/




Programs that you will be using


This section explains the material that you should download. I'll try and explain the steps to set all of this up the best that I can.

To start off you need to install Ruby itself. I recommend doing that here: http://rubyinstaller.org/downloads/

You need to click the link labeled "Ruby 1.9.3-p194" on that page as this is the most recent version of Ruby without all of the extra stuff attached.

Once you've finished installing Ruby open up your command prompt. Now we are going to install your IDE aka Integrated Development Environment which is where you are going to be writing your code.

In your commend prompt type the following line "gem install redcar" this will install redcar.

Now that you have installed redcar you can run it. You can do this two ways - you can use search to find redcar and click to run it (it should be a batch file within your Ruby folder, doing this can let you create yourself a neat little icon for redcar) or you can run it through command prompt. Simply type "redcar" into command prompt to run it.

For any more questions you could have about installation, here are a couple of links you can look over for additional information:
  • http://www.ruby-lang.org/en/downloads/
  • https://github.com/redcar/redcar/wiki/installation


Awesome! You have just set up your own IDE for Ruby and you're ready to code!



Your first program!

So, you should have redcar opened and your screen should look something like this:

+ Show Spoiler +
[image loading]


What you want to do now should seem fairly obvious - but go ahead and create a new file.

To precursor your first program I'd like to throw a few things out there for those who may have some prior programming experience - Ruby is an interpreted language so for this simple stuff we will not be using any 'Require' statements (equivalent of include in C).

So to start off really simple, type into redcar the following:

+ Show Spoiler +
puts "hello"


Now to test this go over to the drop-down bar and under plug-ins select execute. You will see another tab pop up and this is your build log. It should simply say "hello" in it. Congratulations, your code ran successfully!

Another way to test your code is to run it through command prompt. This is a bit more time consuming though. So let's say you want to do this, first you want to save your file. I'm going to save mine in my Ruby folder - labeled Ruby193.

The next step is to set command prompt to run from that folder, so you use the code cd to change the destination and then type the folder destination after that. So once you find where you've saved your program find it's destination and type something similar to my example below:

+ Show Spoiler +
cd C:\Ruby193


Awesome, command prompt is now able to run from this folder, now you want to actually run your program, to do that type:

+ Show Spoiler +
ruby hello.rb


Simply replace hello.rb with whatever you saved your program as and you will see your program run right in front of you.

Congratulations! You've just created and ran your first Ruby program!



Getting your hands dirty

Now let's move onto some of the more juicy things, shall we?

In Ruby there are no types - everything is an object. This basically means that unlike most other languages when you are declaring variables you don't need to assign them. In other languages if you wanted to create a new variable that is an integer you would do something like this:

+ Show Spoiler +
int x = 0 ;


However in Ruby, you don't need to do that, you only have to type this:

+ Show Spoiler +
x = 0


It's a bit simpler, and having no type casting has it's advantages and it's disadvantages, but we'll worry about that later.

For now let's do some simple addition and experiment with types.

type the following into redcar:

+ Show Spoiler +

x = 4
y = 5

z = x + y

puts z


So, yeah. Run that and you should get an output of "9". What you've just done is created three variables, x, y, and z. You'll notice that they are integers. Now try this:

+ Show Spoiler +

x = 4
y = 5.0

z = x + y

puts z


This may not mean much to you, but those are actually two different types of variables! adding a decimal place to the y value actually makes it a float type and the fact that they add together is super cool - I'm bringing this up because I'd like to preface how awesome Ruby is with the flexibility it has with variables.

Next I'll have you guys play around with strings a little bit, try typing this in:

+ Show Spoiler +

x = "Bat"
y = "man"

z = x + y

puts z


Ruby has MANY awesome abilities to manipulate strings in cool ways. Since everything is an object in Ruby these are called methods - here try this method out real quick:

+ Show Spoiler +

x = "Bat"
y = "man"

z = x + y
puts z.reverse


Now to move onto showing some examples of arrays and iterations done in Ruby. Type the following into redcar:

+ Show Spoiler +

x = [2, 5, 6]

x.each do
puts x
end


Your result should be:

+ Show Spoiler +

2
5
6
2
5
6
2
5
6


Notice that it repeated the numbers 2, 5, 6 three times. This is because it ran the loop three times - once for each item within the array, x. When using puts if you put in the variable name it will spit out all of the information and that can be annoying. What if you only want to output each of the values in the array once?

+ Show Spoiler +

x = [2, 5, 6]

x.each do |n|
puts n
end


Your output should be:

+ Show Spoiler +

2
5
6


Now, you should notice that the first code segment is pretty different from the second. To begin with, what's that |n|? That is a new variable that is assigned the value of the variable at the position of the loop that you are in. This may sound confusing (due to my bad wording) but it basically means that as your code runs through the loop it becomes the value of the variable in that position in the loop. So as it runs through each value within x it becomes the value of that position. Then you put n out there and it outputs each value in x.

That was pretty neat if I do say so myself! Anyway, this was just something short I thought I'd prepare to have you mess around a bit before I release you out into the vast world of Ruby.



Additional repositories

I hope you're interested as I have prepared a few awesome links below to further your learning!

  • http://ruby-doc.org/
    + Show Spoiler +
    This will be your best friend for finding out more syntax and reserved words in Ruby. Take a gander into the 'Core' section at the top of this page to find the entire Ruby source code at your disposal. If you're looking for something neat to mess around with I suggest taking a look in the 'String' section within 'Core' to find some fun methods to play around with in Ruby.

  • http://tryruby.org/levels/1/challenges/0
    + Show Spoiler +
    This is a pretty well written hands-on tutorial to help you really get the basics of Ruby down. I highly recommend that you do it!

  • http://www.sapphiresteel.com/ruby-programming/The-Book-Of-Ruby
    + Show Spoiler +
    This is an entire FREE online book that you can download in PDF that is incredibly descriptive and will cover everything you will need to know about Ruby. It has amazing details and examples so you can gets some hands-on experience as to what is being talked about and the writer is extremely entertaining as well.

  • http://pragprog.com/book/ltp2/learn-to-program
    + Show Spoiler +
    This is a book that I have not personally read - but I assume it must be great! This source was supplied from: http://www.teamliquid.net/blogs/viewblog.php?topic_id=337732#7






Closing thoughts


I know my first hands on examples didn't cover base on a lot of things (please don't hunt me down for not mentioning classes in an object-only language) - I was mostly trying to show off some programming fundamentals and be able to help people execute their own program instead of teaching them programming fundamentals (that is what the links are for).

I am also sure that there are other wizards out there who know much more than I who would be glad to extend upon any of the points that I've made and also might even drop by and throw in some tid bits that could be included in the OP. If you're one of those wizards who think that I have left something important out feel free to PM me and I'll be glad to include it - also feel free to toss it down in a comment if that suits your fancy.

Also - feel free to PM me any questions or concerns you might have, I'd love to share more information or even ooh and aah at your creations if you wind up making something awesome!




I hope you guys have as much fun reading this as I did creating it. Happy posting

****
http://talk-to-stimey-please.1324083.n2.nabble.com/
beetlelisk
Profile Blog Joined July 2008
Poland2276 Posts
May 15 2012 02:09 GMT
#2
5/5 for effort
wwww
CyDe
Profile Blog Joined November 2011
United States1010 Posts
Last Edited: 2012-05-15 02:16:18
May 15 2012 02:13 GMT
#3
THANK YOU :D

You're so cool <3

EDIT: And a five outta five, of course
youtube.com/GamingCyDe-- My totally abandoned youtube channel that I might revisit at some point
Sc2Corpse
Profile Blog Joined December 2011
United States210 Posts
May 15 2012 02:48 GMT
#4
I just started getting involved in C++ because I may be going into computer science soon, but very nice! 5/5
The Zombie Protoss <3
og8456
Profile Joined May 2012
Korea (South)26 Posts
May 15 2012 13:09 GMT
#5
good! :D
my stream: http://ko.twitch.tv/prismccorby/
Skeggaba
Profile Blog Joined April 2009
Korea (South)1556 Posts
May 15 2012 13:20 GMT
#6
I missed an "m" and thought you were going to try to be a full time professional broodwar player, just like (Wiki)ruby ...
Bisu[about JD]=I was scared (laughs). The force emanating from his facial expression was so manly that I was even a little jealous.
icydergosu
Profile Blog Joined December 2009
528 Posts
May 15 2012 17:11 GMT
#7
If somebody wants to get a good Ruby introduction for beginners, i found Learn to program by Chris Pine very helpful.

http://pragprog.com/book/ltp2/learn-to-program
I am the Punishment of God. If you had not commited great sins, god would not have sent a punishment like me upon you.
GMarshal
Profile Blog Joined March 2010
United States22154 Posts
May 15 2012 17:14 GMT
#8
On May 15 2012 22:20 Skeggaba wrote:
I missed an "m" and thought you were going to try to be a full time professional broodwar player, just like (Wiki)ruby ...

I made the same mistake. :-P

Nice guide though 5/5 ^_^
Moderator
Anacletus
Profile Blog Joined April 2012
United States733 Posts
May 15 2012 20:11 GMT
#9
On May 16 2012 02:11 icydergosu wrote:
If somebody wants to get a good Ruby introduction for beginners, i found Learn to program by Chris Pine very helpful.

http://pragprog.com/book/ltp2/learn-to-program


Thanks for the additional sources to add - I've included it into the OP!


On May 16 2012 02:14 GMarshal wrote:
Show nested quote +
On May 15 2012 22:20 Skeggaba wrote:
I missed an "m" and thought you were going to try to be a full time professional broodwar player, just like (Wiki)ruby ...

I made the same mistake. :-P

Nice guide though 5/5 ^_^


Time to mark "Getting a 5/5 from a TL legend" off of my bucket list. Thanks :D!
http://talk-to-stimey-please.1324083.n2.nabble.com/
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
May 15 2012 20:22 GMT
#10
5/5 great guide!
That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
bre1010
Profile Blog Joined March 2009
71 Posts
May 15 2012 21:34 GMT
#11
I really like programming and I've been meaning to get into ruby for a while now. I appreciate this blog and keep making more!
JOJOsc2news
Profile Blog Joined March 2011
3000 Posts
Last Edited: 2012-05-17 01:15:12
May 17 2012 01:14 GMT
#12
Excellent blog post and great guide! Thank you!
5/5 and long live the #-beep- IRC Channel
✉ Tweets @sc2channel ⌦ Blog: http://www.teamliquid.net/blog/JOJO ⌫ "Arbiterssss... build more arbiterssss." Click 'Profile' for awesome shiro art!
Please log in or register to reply.
Live Events Refresh
Next event in 1h 19m
[ Submit Event ]
Live Streams
Refresh
StarCraft: Brood War
Sea 970
Pusan 618
Nal_rA 517
EffOrt 179
NaDa 130
JulyZerg 66
GoRush 54
Leta 43
ToSsGirL 38
sSak 25
[ Show more ]
Movie 25
Barracks 22
Sharp 20
yabsab 20
Sacsri 11
Light 11
Noble 9
ajuk12(nOOB) 7
ivOry 5
Bale 3
Dota 2
BananaSlamJamma391
XcaliburYe304
Fuzer 197
League of Legends
JimRising 545
Counter-Strike
shoxiejesuss727
ceh9539
Other Games
Happy355
crisheroes254
Mew2King232
XaKoH 36
NotJumperer8
Has6
Organizations
Dota 2
PGL Dota 2 - Main Stream2607
Other Games
gamesdonequick982
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• LUISG 29
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• iopq 1
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• HappyZerGling99
Upcoming Events
The PondCast
1h 19m
Bellum Gens Elite
1h 19m
WardiTV Invitational
2h 19m
Replay Cast
15h 19m
OSC
15h 19m
Bellum Gens Elite
1d 2h
WardiTV Invitational
1d 5h
BSL 2v2 ProLeague
1d 10h
Replay Cast
1d 15h
CranKy Ducklings
2 days
[ Show More ]
SC Evo League
2 days
Bellum Gens Elite
2 days
Fire Grow Cup
2 days
CSO Contender
2 days
BSL: ProLeague
2 days
StRyKeR vs MadiNho
Cross vs UltrA
TT1 vs JDConan
Bonyth vs Sziky
Replay Cast
2 days
SOOP Global
2 days
Creator vs Rogue
Cure vs Classic
SOOP
3 days
SHIN vs GuMiho
Sparkling Tuna Cup
3 days
AllThingsProtoss
3 days
Fire Grow Cup
3 days
BSL: ProLeague
3 days
HBO vs Doodle
spx vs Tech
DragOn vs Hawk
Dewalt vs TerrOr
Replay Cast
3 days
Replay Cast
4 days
Replay Cast
5 days
WardiTV Invitational
5 days
GSL Code S
6 days
Rogue vs GuMiho
Maru vs Solar
Replay Cast
6 days
Liquipedia Results

Completed

CSL Season 17: Qualifier 1
DreamHack Dallas 2025
Heroes 10 EU

Ongoing

JPL Season 2
BSL 2v2 Season 3
BSL Season 20
KCM Race Survival 2025 Season 2
NPSL S3
Rose Open S1
CSL Season 17: Qualifier 2
2025 GSL S2
Bellum Gens Elite Stara Zagora 2025
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
ECL Season 49: Europe
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025
YaLLa Compass Qatar 2025
PGL Bucharest 2025
BLAST Open Spring 2025

Upcoming

CSL 17: 2025 SUMMER
Copa Latinoamericana 4
CSLPRO Last Chance 2025
CSLAN 2025
K-Championship
SEL Season 2 Championship
Esports World Cup 2025
HSC XXVII
Championship of Russia 2025
Murky Cup #2
NC Random Cup
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.