Skip to content

Instantly share code, notes, and snippets.

@dataPulverizer
Last active December 12, 2017 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dataPulverizer/7ed2f149f108f7965af6737022a372bf to your computer and use it in GitHub Desktop.
Save dataPulverizer/7ed2f149f108f7965af6737022a372bf to your computer and use it in GitHub Desktop.
Julia features wishlist
#==
Feature wish list for julia in no particular order:
==#
"1. Immutable members of mutable types, something like:"
mutable struct myType
immutable x::Int64 # to break all that old code! :-)
end
"""2. Inserting code into structs, without having to completely generate them each time using
funcitons something like:"""
code = :(x::Int64)
struct Test
@mixin(code)
y::Int64
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment