making script classes useful/accessable for the rest of the world

This commit is contained in:
Alex Tkachman
2012-08-01 09:58:01 +03:00
parent 1a918d52bb
commit e134969896
21 changed files with 229 additions and 75 deletions
+1 -1
View File
@@ -5,4 +5,4 @@ fun fib(n: Int): Int {
return v
}
val result = fib(num)
public val result = fib(num)
@@ -8,3 +8,4 @@ fun fib(n: Int): Int {
}
val result = fib(num)
12
@@ -0,0 +1,4 @@
val fibwp = test.Fibwp(5)
val callResult = fibwp.fib(4)
val result = fibwp.num + fibwp.result - 5
fibwp.rv