Skip to content

Commit

Permalink
remove git markers
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoder committed Apr 13, 2016
1 parent 932c736 commit 6001293
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions etc/doc/tutorial/en/09.4-Ticking.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ sleeps for rhythms, chord progressions, timbral variations, etc. etc.
Sonic Pi provides a *very* handy tool for working with rings within
`live_loop`s. It's called the tick system. In the section about the rings we were talking about the counter that is constantly increasing, like a current beat number. Tick just implements this idea. It provides you with the ability to *tick through rings*. Let's look at an example:

+```
+counter = 0
+live_loop :arp do
+ play (scale :e3, :minor_pentatonic)[counter], release: 0.1
+ counter += 1
+ sleep 0.125
+end
+```
+
+This is equivalent to:
```
counter = 0
live_loop :arp do
play (scale :e3, :minor_pentatonic)[counter], release: 0.1
counter += 1
sleep 0.125
end
```

This is equivalent to:

```
live_loop :arp do
Expand Down

0 comments on commit 6001293

Please sign in to comment.