We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simple Swift enums (without associated values) look like:
enum CompassPoint { case north case south case east case west }
In Kotlin translates to:
enum class CompassPoint { north, south, east, west }
The text was updated successfully, but these errors were encountered:
#30 Added simple enum cases translation
044181b
Implemented with 044181b
Sorry, something went wrong.
No branches or pull requests
Simple Swift enums (without associated values) look like:
In Kotlin translates to:
The text was updated successfully, but these errors were encountered: