Skip to content

Instantly share code, notes, and snippets.

@muukii
Created February 14, 2016 08:32
Show Gist options
  • Save muukii/63b54d476598f450adbc to your computer and use it in GitHub Desktop.
Save muukii/63b54d476598f450adbc to your computer and use it in GitHub Desktop.
// App Module
class MyAppClass {
class NestedClass { }
}
// Module
class MyModuleClass {
class NestedClass {}
}
print(String(MyAppClass))
print(String(MyAppClass.NestedClass))
print(String(MyModuleClass))
print(String(MyModule.NestedClass))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment