This commit is contained in:
2024-02-09 12:34:34 +01:00
parent e76e760529
commit 4d772a17cb
29 changed files with 126 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
package P10
object FrenshDude {
}

View File

@@ -0,0 +1,16 @@
package P10
object test{
def main(args: Array[String]): Unit = {
type DoubleFkt = (Double, Double) => Double
def func(a: Double, b: Double):
DoubleFkt =
(x: Double, y: Double) => a + b + x + y
val yeet = func(1,2)
println(yeet(3,4))
}
}

View File

@@ -0,0 +1,5 @@
package P10
object calculate {
}