shift-js / shift-js

Swift to JavaScript transpiler

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add complete support for protocols, and associated tests

opened this issue · comments

func returnWorld() -> String {
return "World"
}
func printInput(input: String) {
print(input)
}
printInput("Hello, (returnWorld())!")