• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 18:09
CET 00:09
KST 08:09
  • 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
ByuL: The Forgotten Master of ZvT28Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Weekly Cups (Feb 16-22): MaxPax doubles0Weekly Cups (Feb 9-15): herO doubles up2ACS replaced by "ASL Season Open" - Starts 21/0258LiuLi Cup: 2025 Grand Finals (Feb 10-16)46Weekly Cups (Feb 2-8): Classic, Solar, MaxPax win2
StarCraft 2
General
Terran AddOns placement How do you think the 5.0.15 balance patch (Oct 2025) for StarCraft II has affected the game? Nexon's StarCraft game could be FPS, led by UMS maker ByuL: The Forgotten Master of ZvT Oliveira Would Have Returned If EWC Continued
Tourneys
PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar) Sparkling Tuna Cup - Weekly Open Tournament SEL Doubles (SC Evo Bimonthly) WardiTV Team League Season 10 RSL Season 4 announced for March-April
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 515 Together Forever Mutation # 514 Ulnar New Year Mutation # 513 Attrition Warfare
Brood War
General
Soma Explains: JD's Unrelenting Aggro vs FlaSh Recent recommended BW games TvZ is the most complete match up BGH Auto Balance -> http://bghmmr.eu/ ACS replaced by "ASL Season Open" - Starts 21/02
Tourneys
BWCL Season 64 Announcement The Casual Games of the Week Thread [Megathread] Daily Proleagues [LIVE] [S:21] ASL Season Open Day 1
Strategy
Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Simple Questions, Simple Answers Zealot bombing is no longer popular?
Other Games
General Games
Battle Aces/David Kim RTS Megathread Diablo 2 thread Nintendo Switch Thread Path of Exile Beyond All Reason
Dota 2
The Story of Wings Gaming Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine UK Politics Mega-thread YouTube Thread Mexico's Drug War
Fan Clubs
The IdrA Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece [Req][Books] Good Fantasy/SciFi books Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
YOUTUBE VIDEO
XenOsky
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Inside the Communication of …
TrAiDoS
Life Update and thoughts.
FuDDx
How do archons sleep?
8882
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2487 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 9h 51m
[ Submit Event ]
Live Streams
Refresh
StarCraft: Brood War
Sea 8751
Artosis 267
Shuttle 242
Terrorterran 19
Dota 2
LuMiX1
League of Legends
JimRising 789
goblin24
Counter-Strike
pashabiceps2561
Fnx 2148
Stewie2K432
Super Smash Bros
hungrybox2329
Heroes of the Storm
Khaldor295
Other Games
gofns7557
Grubby3412
summit1g2583
Liquid`RaSZi1888
Maynarde144
JuggernautJason25
Organizations
Other Games
gamesdonequick959
Counter-Strike
PGL138
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• Hupsaiya 102
• musti20045 40
• Adnapsc2 19
• Kozan
• Migwel
• sooper7s
• AfreecaTV YouTube
• intothetv
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• RayReign 35
• HerbMon 17
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21375
• WagamamaTV396
League of Legends
• Doublelift3935
Other Games
• imaqtpie1382
Upcoming Events
Replay Cast
9h 51m
Wardi Open
12h 51m
Monday Night Weeklies
17h 51m
Replay Cast
1d
Replay Cast
2 days
Replay Cast
3 days
The PondCast
3 days
KCM Race Survival
3 days
Replay Cast
4 days
Replay Cast
5 days
[ Show More ]
CranKy Ducklings
5 days
Replay Cast
6 days
Sparkling Tuna Cup
6 days
Liquipedia Results

Completed

[S:21] ASL SEASON OPEN 2nd Round
LiuLi Cup: 2025 Grand Finals
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Acropolis #4 - TS5
Jeongseon Sooper Cup
Spring Cup 2026
WardiTV Winter 2026
Nations Cup 2026
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 2025

Upcoming

ASL Season 21: Qualifier #1
ASL Season 21: Qualifier #2
ASL Season 21
Acropolis #4 - TS6
Acropolis #4
IPSL Spring 2026
CSLAN 4
HSC XXIX
uThermal 2v2 2026 Main Event
Bellum Gens Elite Stara Zagora 2026
RSL Revival: Season 4
NationLESS Cup
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
FISSURE Playground #3
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
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 © 2026 TLnet. All Rights Reserved.