Created
December 31, 2016 20:01
-
-
Save inakidelamadrid/18d82c8f4286ad6ce58160a7bb2e26bf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TodoApp < Sinatra::Base | |
get '/tareas' do | |
@tareas = [{"tit" => "Leer", "hecho" => false, ["tit"=>"correr", "hecho" => false]} | |
end | |
if __FILE__ == $0 | |
run! | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment