DEV Community

JavaCode7
JavaCode7

Posted on • Updated on

Lua v Ruby

Lua. My 5th favourite language (after python, typescript, go and javascript). While not that powerful, it's the language of choice for roblox and some 2D gamedevs (via Love2D). Coded in C with easily readable syntax and good for beginners. Lua is going to put up a good fight.

Ruby. Not that popular in gamedev but useful in webdev (via ruby on rails) it is the language that just so happens to power DEV! Much more powerful than lua at the expense of speed and effectiveness as a first programming language for absolute beginners.

Lua

Let's see what we have here:

  • ✔  Fast
  • ✔  Game engine support
  • ✔  Simple syntax
  • ✔  Dynamically typed
  • ✔  Compiled
  • ❌ Not very powerful
  • ❌ Compiles to .out files unless you use srlua
  • ❌ Have to download the package manager.

Ruby

And rivalling lua:

  • ❌ Not as fast as lua
  • ✔  Game engine support (Ruby2D)
  • ✔  Simple syntax
  • ✔  Dynamically typed
  • ✔  Interpreted
  • ❌ Very powerful
  • ✔  Webdev
  • ✔  Built in package manager

And there we have it! Ruby wins by 1 point. This brings me to the end of my article but I would love to hear what you think! Comment down below to share your thoughts 💬.

Latest comments (3)

Collapse
 
freakcdev297 profile image
FreakCdev • Edited

I don't really know what's "not powerful" or "powerful" ?

Besides, I thought Lua came with a package manager depending where you're downloading it? Mine came with... pretty much everything.

Collapse
 
javacode7 profile image
JavaCode7

I have 2. One from Lua for windows and another from MinGW. Neither came with Rocks or any other package manager.

Collapse
 
javacode7 profile image
JavaCode7

The "power" of programming language is its functionality.