correctDoes that mean I would be using something like C#? I have not worked with C#, did read a textbook on it once...lol but never really used it to build something apart from the exercises in the textbook.
C#, like most mainstream typed languages is basically the same as Delphi, with a slightly different syntax
Code:
public ReturnType functionName(ParameterType parameterName) {}
instead of
public functionName(parameterName: ParameterType): ReturnType {}
fun fact: Anders Hejlsberg, who wrote Turbo Pascal and Delphi, is the lead architect of C#
