Minor: drop semicolon in package declaration everywhere.

This commit is contained in:
Zalim Bashorov
2014-09-11 21:22:42 +04:00
parent 0f136d5adc
commit 30208d5532
60 changed files with 87 additions and 87 deletions
@@ -1,4 +1,4 @@
package interactive;
package interactive
class Shape(var height : Double = 1.0, var fillColor : String = "#AAAAAA") {
@@ -8,4 +8,4 @@ fun box() : String {
var a : Shape? = Shape()
a?.height = 1.0
return "OK"
}
}