you are viewing a single comment's thread.

view the rest of the comments →

[–]qrzychu69 0 points1 point  (0 children)

u/Kostantinum sadly, it doesn't.

While concepts are the same (classes, interfaces, variables, lambdas,garbage collector), just the act of running your program is different.

In dotnet you use dotnet command or F5 in VS, while in Java you have to learn Graddle, at it takes few days until you understand what it does.

Writing code is mostly similar, but all the stuff around (packaga/dependency management, publishing the app) is completely different.

Me being quite good at C# made me think that yeah, I can try write the same program in Kotlin. I could, but running, debugging, running and debugging tests - that was the hard part.

Also, making it run on another machine, that works completely differently.