a
This commit is contained in:
2
.idea/FH2.iml
generated
Normal file
2
.idea/FH2.iml
generated
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module classpath="CMake" type="CPP_MODULE" version="4" />
|
||||
7
.idea/codeStyles/Project.xml
generated
Normal file
7
.idea/codeStyles/Project.xml
generated
Normal file
@@ -0,0 +1,7 @@
|
||||
<component name="ProjectCodeStyleConfiguration">
|
||||
<code_scheme name="Project" version="173">
|
||||
<ScalaCodeStyleSettings>
|
||||
<option name="MULTILINE_STRING_CLOSING_QUOTES_ON_NEW_LINE" value="true" />
|
||||
</ScalaCodeStyleSettings>
|
||||
</code_scheme>
|
||||
</component>
|
||||
5
.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
5
.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
@@ -0,0 +1,5 @@
|
||||
<component name="ProjectCodeStyleConfiguration">
|
||||
<state>
|
||||
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
|
||||
</state>
|
||||
</component>
|
||||
11
.idea/libraries/openjfx_javafx_base.xml
generated
Normal file
11
.idea/libraries/openjfx_javafx_base.xml
generated
Normal file
@@ -0,0 +1,11 @@
|
||||
<component name="libraryTable">
|
||||
<library name="openjfx.javafx.base" type="repository">
|
||||
<properties maven-id="org.openjfx:javafx-base:20-ea+2" />
|
||||
<CLASSES>
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/20-ea+2/javafx-base-20-ea+2.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/20-ea+2/javafx-base-20-ea+2-linux.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</component>
|
||||
15
.idea/libraries/openjfx_javafx_controls.xml
generated
Normal file
15
.idea/libraries/openjfx_javafx_controls.xml
generated
Normal file
@@ -0,0 +1,15 @@
|
||||
<component name="libraryTable">
|
||||
<library name="openjfx.javafx.controls" type="repository">
|
||||
<properties maven-id="org.openjfx:javafx-controls:22-ea+16" />
|
||||
<CLASSES>
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-controls/22-ea+16/javafx-controls-22-ea+16.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-controls/22-ea+16/javafx-controls-22-ea+16-linux.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/22-ea+16/javafx-graphics-22-ea+16.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/22-ea+16/javafx-graphics-22-ea+16-linux.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/22-ea+16/javafx-base-22-ea+16.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/22-ea+16/javafx-base-22-ea+16-linux.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</component>
|
||||
13
.idea/libraries/openjfx_javafx_graphics.xml
generated
Normal file
13
.idea/libraries/openjfx_javafx_graphics.xml
generated
Normal file
@@ -0,0 +1,13 @@
|
||||
<component name="libraryTable">
|
||||
<library name="openjfx.javafx.graphics" type="repository">
|
||||
<properties maven-id="org.openjfx:javafx-graphics:22-ea+16" />
|
||||
<CLASSES>
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/22-ea+16/javafx-graphics-22-ea+16.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-graphics/22-ea+16/javafx-graphics-22-ea+16-linux.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/22-ea+16/javafx-base-22-ea+16.jar!/" />
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/openjfx/javafx-base/22-ea+16/javafx-base-22-ea+16-linux.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</component>
|
||||
5
WS23_24/Anwendungsentwicklung/src/P10/FrenchDude.scala
Normal file
5
WS23_24/Anwendungsentwicklung/src/P10/FrenchDude.scala
Normal file
@@ -0,0 +1,5 @@
|
||||
package P10
|
||||
|
||||
object FrenshDude {
|
||||
|
||||
}
|
||||
16
WS23_24/Anwendungsentwicklung/src/P10/additionCurry.scala
Normal file
16
WS23_24/Anwendungsentwicklung/src/P10/additionCurry.scala
Normal 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))
|
||||
}
|
||||
}
|
||||
|
||||
5
WS23_24/Anwendungsentwicklung/src/P10/calculate.scala
Normal file
5
WS23_24/Anwendungsentwicklung/src/P10/calculate.scala
Normal file
@@ -0,0 +1,5 @@
|
||||
package P10
|
||||
|
||||
object calculate {
|
||||
|
||||
}
|
||||
3
WS23_24/Anwendungsentwicklung/src/P11/date.c
Normal file
3
WS23_24/Anwendungsentwicklung/src/P11/date.c
Normal file
@@ -0,0 +1,3 @@
|
||||
//
|
||||
// Created by jordi on 1/8/24.
|
||||
//
|
||||
3
WS23_24/Anwendungsentwicklung/src/P11/test2.c
Normal file
3
WS23_24/Anwendungsentwicklung/src/P11/test2.c
Normal file
@@ -0,0 +1,3 @@
|
||||
//
|
||||
// Created by jordi on 1/8/24.
|
||||
//
|
||||
2
WS23_24/Anwendungsentwicklung/src/P5/A2.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P5/A2.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P5;public class A2 {
|
||||
}
|
||||
2
WS23_24/Anwendungsentwicklung/src/P5/A3.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P5/A3.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P5;public class A3 {
|
||||
}
|
||||
2
WS23_24/Anwendungsentwicklung/src/P5/Praktikum.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P5/Praktikum.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P5;public class Praktikum {
|
||||
}
|
||||
2
WS23_24/Anwendungsentwicklung/src/P6/A2.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P6/A2.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P6;public class A2 {
|
||||
}
|
||||
2
WS23_24/Anwendungsentwicklung/src/P6/Praktikum.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P6/Praktikum.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P6;public class Praktikum {
|
||||
}
|
||||
2
WS23_24/Anwendungsentwicklung/src/P7/A1.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P7/A1.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P7;public class A1 {
|
||||
}
|
||||
2
WS23_24/Anwendungsentwicklung/src/P7/Gabel.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P7/Gabel.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P7;public class Gabel {
|
||||
}
|
||||
2
WS23_24/Anwendungsentwicklung/src/P7/Philosoph.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P7/Philosoph.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P7;public class Philosoph {
|
||||
}
|
||||
2
WS23_24/Anwendungsentwicklung/src/P7/Philosophen.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P7/Philosophen.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P7;public class Philosophen {
|
||||
}
|
||||
2
WS23_24/Anwendungsentwicklung/src/P7/Sanduhr.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P7/Sanduhr.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P7;public class Sanduhr {
|
||||
}
|
||||
2
WS23_24/Anwendungsentwicklung/src/P7/Spammer.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P7/Spammer.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P7;public class Spammer {
|
||||
}
|
||||
2
WS23_24/Anwendungsentwicklung/src/P8/FontChangeApp.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P8/FontChangeApp.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P8;public class FontChangeApp {
|
||||
}
|
||||
2
WS23_24/Anwendungsentwicklung/src/P8/Launcher.java
Normal file
2
WS23_24/Anwendungsentwicklung/src/P8/Launcher.java
Normal file
@@ -0,0 +1,2 @@
|
||||
package P8;public class Launcher {
|
||||
}
|
||||
5
WS23_24/Anwendungsentwicklung/src/P9/HalloWelt.sc
Normal file
5
WS23_24/Anwendungsentwicklung/src/P9/HalloWelt.sc
Normal file
@@ -0,0 +1,5 @@
|
||||
object HalloWelt {
|
||||
def main(args: Array[String]) {
|
||||
println("Hallo, Welt!")
|
||||
}
|
||||
}
|
||||
5
WS23_24/Anwendungsentwicklung/src/P9/Numbers.scala
Normal file
5
WS23_24/Anwendungsentwicklung/src/P9/Numbers.scala
Normal file
@@ -0,0 +1,5 @@
|
||||
package P9
|
||||
|
||||
object Numbers {
|
||||
|
||||
}
|
||||
5
WS23_24/Anwendungsentwicklung/src/P9/test.scala
Normal file
5
WS23_24/Anwendungsentwicklung/src/P9/test.scala
Normal file
@@ -0,0 +1,5 @@
|
||||
package P9
|
||||
|
||||
class test {
|
||||
|
||||
}
|
||||
0
WS23_24/Anwendungsentwicklung/src/P9/test2.scala
Normal file
0
WS23_24/Anwendungsentwicklung/src/P9/test2.scala
Normal file
Reference in New Issue
Block a user