• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 11:06
CEST 17:06
KST 00:06
  • 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
Serral wins EWC 202543Tournament Spotlight: FEL Cracow 202510Power Rank - Esports World Cup 202580RSL Season 1 - Final Week9[ASL19] Finals Recap: Standing Tall15
Community News
Weekly Cups (Jul 28-Aug 3): herO doubles up6LiuLi Cup - August 2025 Tournaments3[BSL 2025] H2 - Team Wars, Weeklies & SB Ladder10EWC 2025 - Replay Pack4Google Play ASL (Season 20) Announced58
StarCraft 2
General
Weekly Cups (Jul 28-Aug 3): herO doubles up Clem Interview: "PvT is a bit insane right now" Serral wins EWC 2025 TL Team Map Contest #5: Presented by Monster Energy Would you prefer the game to be balanced around top-tier pro level or average pro level?
Tourneys
Global Tourney for College Students in September Sparkling Tuna Cup - Weekly Open Tournament WardiTV Mondays $5,000 WardiTV Summer Championship 2025 LiuLi Cup - August 2025 Tournaments
Strategy
Custom Maps
External Content
Mutation # 485 Death from Below Mutation # 484 Magnetic Pull Mutation #239 Bad Weather Mutation # 483 Kill Bot Wars
Brood War
General
BW General Discussion Help, I can't log into staredit.net How do the new Battle.net ranks translate? Which top zerg/toss will fail in qualifiers? Google Play ASL (Season 20) Announced
Tourneys
[CSLPRO] It's CSLAN Season! - Last Chance [Megathread] Daily Proleagues [ASL20] Online Qualifiers Day 2 Cosmonarchy Pro Showmatches
Strategy
Simple Questions, Simple Answers [G] Mineral Boosting Muta micro map competition Does 1 second matter in StarCraft?
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Total Annihilation Server - TAForever Beyond All Reason [MMORPG] Tree of Savior (Successor of Ragnarok)
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
European Politico-economics QA Mega-thread US Politics Mega-thread Things Aren’t Peaceful in Palestine Bitcoin discussion thread 9/11 Anniversary
Fan Clubs
INnoVation Fan Club SKT1 Classic Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread [\m/] Heavy Metal Thread Korean Music Discussion
Sports
2024 - 2025 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Gtx660 graphics card replacement Installation of Windows 10 suck at "just a moment" Computer Build, Upgrade & Buying Resource Thread
TL Community
TeamLiquid Team Shirt On Sale The Automated Ban List
Blogs
[Girl blog} My fema…
artosisisthebest
Sharpening the Filtration…
frozenclaw
ASL S20 English Commentary…
namkraft
The Link Between Fitness and…
TrAiDoS
momentary artworks from des…
tankgirl
from making sc maps to makin…
Husyelt
Customize Sidebar...

Website Feedback

Closed Threads



Active: 829 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
Stormgate Nexus
14:00
Stormgate Launch Days
BeoMulf221
TKL 194
IndyStarCraft 179
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Reynor 360
SpeCial 81
StarCraft: Brood War
Britney 50665
Bisu 3971
Shuttle 2425
Mini 930
Soulkey 575
ggaemo 463
Snow 365
actioN 350
ZerO 277
Soma 221
[ Show more ]
Hyuk 197
sSak 157
Leta 91
ToSsGirL 76
sorry 74
Nal_rA 57
Sharp 56
Aegong 40
soO 39
[sc1f]eonzerg 33
sas.Sziky 29
zelot 27
scan(afreeca) 20
Rock 17
ajuk12(nOOB) 17
Sacsri 16
Terrorterran 13
Backho 12
IntoTheRainbow 10
SilentControl 9
JulyZerg 8
ivOry 4
Stormgate
BeoMulf221
TKL 194
IndyStarCraft 179
Dota 2
Gorgc5777
Dendi1606
XcaliburYe381
Counter-Strike
pashabiceps504
flusha368
byalli292
kRYSTAL_56
Heroes of the Storm
XaKoH 112
Other Games
gofns1900
hiko891
Beastyqt480
crisheroes383
KnowMe370
Hui .365
RotterdaM261
DeMusliM253
Fuzer 212
ArmadaUGS92
QueenE71
ZerO(Twitch)18
Trikslyr14
Organizations
StarCraft 2
WardiTV1060
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• StrangeGG 84
• poizon28 23
• davetesta16
• Kozan
• AfreecaTV YouTube
• intothetv
• sooper7s
• IndyKCrew
• LaughNgamezSOOP
• Migwel
StarCraft: Brood War
• FirePhoenix10
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV791
League of Legends
• Nemesis2797
• Jankos1054
Upcoming Events
uThermal 2v2 Circuit
55m
DaveTesta Events
8h 55m
The PondCast
18h 55m
WardiTV Summer Champion…
19h 55m
Replay Cast
1d 8h
LiuLi Cup
1d 19h
uThermal 2v2 Circuit
1d 23h
RSL Revival
2 days
RSL Revival
2 days
uThermal 2v2 Circuit
2 days
[ Show More ]
CSO Cup
3 days
Sparkling Tuna Cup
3 days
uThermal 2v2 Circuit
3 days
Wardi Open
4 days
RotterdaM Event
5 days
RSL Revival
6 days
Liquipedia Results

Completed

ASL Season 20: Qualifier #2
FEL Cracow 2025
CC Div. A S7

Ongoing

Copa Latinoamericana 4
Jiahua Invitational
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
HCC Europe
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025

Upcoming

ASL Season 20
CSLPRO Chat StarLAN 3
BSL Season 21
BSL 21 Team A
RSL Revival: Season 2
Maestros of the Game
SEL Season 2 Championship
WardiTV Summer 2025
uThermal 2v2 Main Event
Thunderpick World Champ.
MESA Nomadic Masters Fall
CS Asia Championships 2025
Roobet Cup 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
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.