Objective C General Print
objective-c
Solution
`NSLog()` does print to the console, and is very similar to C's `printf()`. Having its origins and basis in C, console printing is done as it is in C, essentially.
Problem
Does objective C have a general print command like Python? NSLog seems to log it rather than print out to console. printf only accepts specific types.