diff options
author | NickPapanastasiou <nickpap9411@gmail.com> | 2015-06-16 17:11:23 -0400 |
---|---|---|
committer | NickPapanastasiou <nickpap9411@gmail.com> | 2015-06-16 17:11:23 -0400 |
commit | b0859afe7fd0981f676598c95e54a73677710215 (patch) | |
tree | 7fdbb6be67f8241301c59a927ba01a28b8999099 /d.html.markdown | |
parent | 8bb2c3db63b87582764dca2641c8d84b39ed017f (diff) | |
parent | 2db99047ef98ec636b78e29b72f46dc347b37d38 (diff) |
Merge branch 'master' of https://github.com/NickPapanastasiou/learnxinyminutes-docs
Diffstat (limited to 'd.html.markdown')
-rw-r--r-- | d.html.markdown | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/d.html.markdown b/d.html.markdown index f0e9ce02..ee06a425 100644 --- a/d.html.markdown +++ b/d.html.markdown @@ -133,13 +133,6 @@ getter and setter methods (`object.setX(7)`)! ```d // Consider a class parameterized on a types T, U - -class MyClass(T, U) { - T _data; - U _other; - -} - // And "getter" and "setter" methods like so class MyClass(T, U) { T _data; |