|
Scala example source code file (t3670.scala)
The Scala t3670.scala source code
class C {
val things = List("abcs")
if (things.length < 30) {
lazy val a = "a"
println(a)
}
if (things.length < 30) {
lazy val b = "b"
println(b)
}
}
class M extends App {
def foo {
lazy val a = {
lazy val b = 1
lazy val c = 2
println(b)
println(c)
}
a
lazy val d = 42
println(d)
}
}
object Test extends App {
new C()
new M().foo
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala t3670.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.