• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2017-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3  */
4 
5 package sample
6 
7 expect object Platform {
8     val name: String
9 }
10 
hellonull11 fun hello(): String = "Hello from ${Platform.name}"
12