mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-07 05:04:58 -05:00
8 lines
123 B
R
8 lines
123 B
R
library(shiny)
|
|
|
|
server(function(input, output) {
|
|
output$valUpper <- reactive(function() {
|
|
toupper(input$val)
|
|
})
|
|
})
|