Closed
Description
Dynamic import would allow us to be able to import the exercise.example
but it that doesn't exist then we could just import exercise
. This would help in development.
https://github.com/tc39/proposal-dynamic-import
This would be similar to what we already do in the Objective-C track
#if __has_include("AllergiesExample.h")
# import "AllergiesExample.h"
# else
# import "Allergies.h"
#endif