Cor — A minimal OO proposal for the Perl core
This is version 0.10 of this document.
# 1. install java | |
# 2. install ant | |
# 3. install npm and nodejs | |
# 4. install android sdk | |
# 5. install phonegap | |
# 6. create a hello world phonegap app | |
# 7. lunch android avd(emulator) | |
# 8. run the app | |
# 9. add pluins |
#!/opt/perl | |
use Mojolicious::Lite; | |
use JSON; | |
get '/' => sub { | |
my $self = shift; | |
$self->render("index"); | |
}; |