Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions notes/1 - Ruby history and basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ a += 1
# Ruby won't automatically make a number into a String.
# You must do it manually by calling the "to_s" built in function
puts "a now = " + a => Exception
a_value = a_value + a_value
a_value = a_value + a_value #что это?
puts "a_value now = " + a_value.to_s
# % + - * / and so on but here is the best way:
puts "a_value now = #{ a_value.to_s }"
puts "a_value now = #{ a_value }"
```

### Strings and comments
Expand Down Expand Up @@ -282,7 +282,7 @@ exit


## Git and SVN
* git initn
* git init
* git add
* git commit
* git branch
Expand Down