Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Counter

# if file exists read the content

filename = "counter.txt"

counter = 0
if File.exists?(filename)
  content = File.read(filename)
  counter = content.to_i
end

counter += 1
puts counter

File.write(filename, counter)