init
This commit is contained in:
commit
8f4f858d86
30 changed files with 9765 additions and 0 deletions
10
examples/hello.gt
Normal file
10
examples/hello.gt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
package examples.hello
|
||||
|
||||
fun greet(name: String): String {
|
||||
return "Hello, " + name
|
||||
}
|
||||
|
||||
fun main() {
|
||||
val message = greet("Go backend")
|
||||
println(message)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue