Hello World experience in #C:
- install gcc
- gcc -o app app.c
- ./app
Hello World experience in #Java:
- install openjdk
- javac HelloWorld.java
- java HelloWorld
Hello World experience in #CSharp:
- install dotnet sdk
- dotnet new console
- dotnet run
Hello World experience in #ObjectiveC:
- use the https://gnustep.org/getit.html script
- it breaks
- install gnustep-make,base,gui,back from package manager
- run make
- "/common.make not found"
- source /usr/share/GNUstep/System/Library/Makefiles/GNUstep.sh
- run make
- clang error: "Your gnustep-base was configured for the objc-nonfragile-abi but you are not
using it now."
- curse
- uninstall everything
- lookup forum posts saying to use the non-development version of the install script
- curl that script
- breaks
- curl that same script
- it almost works
- source *different* GNUstep.sh
- it works
- run make
- ./HelloWorld