mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-19 02:44:45 -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)
|
|
})
|
|
})
|