Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 492 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 492 Bytes

Overview

You can read this document from top to bottom, but it’s advisable to jump through sections because some concepts are interrelated and can’t be explained in isolation.

In code examples, the comment #=> is used to show the value of an expression. For example:

a = 1 + 2
a #=> 3

A comment using : is used for showing the type of a variable.

s = "hello"
# s : String

Let's start with two examples to familiarize ourselves with the language.