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
include
You can do this since crystal-lang/crystal@a8dc4fb:
lib Lib struct Foo x : Int32 y : Int16 end struct Bar include Foo z : Int8 end end Lib::Bar.new # => Lib::Bar(@x=0, @y=0, @z=0)
I don't know if this has ever been used in the wild at all, but we should probably document it regardless.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
You can do this since crystal-lang/crystal@a8dc4fb:
I don't know if this has ever been used in the wild at all, but we should probably document it regardless.
The text was updated successfully, but these errors were encountered: