Skip to content

Instantly share code, notes, and snippets.

@emmiep
Created May 23, 2019 14:42
Show Gist options
  • Select an option

  • Save emmiep/c0719a834a8e0cc254a51e76d020dc69 to your computer and use it in GitHub Desktop.

Select an option

Save emmiep/c0719a834a8e0cc254a51e76d020dc69 to your computer and use it in GitHub Desktop.
Crystal session counter
get "/" do |env|
count = env.session.int?("count")
count = 0 unless count
env.session.int("count", count+1)
"Count = #{count}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment