## Examples of Kotlin support in Spring Cloud Function ### Introduction This example provides a configuration with a single Kotlin function [source, kotlin] ---- @Configuration class DemoKotlinConfiguration { @Bean fun uppercase(): (String) -> String { return { it.toUpperCase() } } } ---- It also adds web support [source, xml] ---- org.springframework.cloud spring-cloud-function-kotlin ${spring-cloud-function.version} org.springframework.cloud spring-cloud-function-web ${spring-cloud-function.version} ---- Once you start the application, simply issue GET request either thru browser or curl: [source, text] ---- curl http://localhost:8080/uppercase/hello ---- you should see the output [source, text] ---- HELLO ----