Ruby Training

From bibbleWiki
Revision as of 21:48, 18 May 2026 by Iwiseman (talk | contribs) (Created page with "=Introduction= This is to summarised what I learn on the ruby Training =Interpolation= This is how to interpolation works <syntaxhighlight lang="rb"> my_var1 = "FRED WAS ERE" my_var2 = "Let's put this in here#{my_var1}" </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Introduction

This is to summarised what I learn on the ruby Training

Interpolation

This is how to interpolation works

my_var1 = "FRED WAS ERE"
my_var2 = "Let's put this in here#{my_var1}"