Each shiny app contains two parts: A user interface definition (UI) and a server script (server). This example shows how you can print "Hello world" from UI or from server.
UI.R
In the UI you can place some view objects (div, inputs, buttons, etc).
library(shiny)
# Define UI for appl...