Interface as Type
Implementing Interface
Demo1:
See the Pen TypeScriptInterfaceDemo1 by kenanhancer (@kenanhancer) on CodePen.
Continue readingSee the Pen TypeScriptInterfaceDemo1 by kenanhancer (@kenanhancer) on CodePen.
Continue readingThis post is just a reminder for me. So in order to find more details about dotnet CLI, follow the below link
https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet
dotnet new console -o console-demo1
dotnet new webapi -o webapi-todo-demo1
-o or –output is location to place for new generated project.
dotnet new console -o enum_demo4
-d is output directory for new generated class files.
javac -d ./target/classes src/main/java/com/extuni/enum_demo4/App.java
javac -d ./target/classes
./src/main/java/com/extuni/enum_demo4/App.java
./src/main/java/com/extuni/enum_demo4/Greeting.java
./src/main/java/com/extuni/enum_demo4/Helper.java
javac -d ./target/classes ./src/main/**/*.java
Trying to compile ./src folder completely will throw exception due to junit.jar file dependency. So, it should be specified using -cp option which means –classpath as below.
javac -d ./target/classes -cp /Users/kenanhancer/.m2/repository/junit/junit/4.11/junit-4.11.jar ./src/**/*.java
Continue reading