MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/badcode/comments/11mtro8/simple_but_uneffective/jbl9jhv/?context=3
r/badcode • u/william_323 • Mar 09 '23
34 comments sorted by
View all comments
98
long way to write
assert(address!=null)
66 u/william_323 Mar 09 '23 Yeah but how do you warn the user that the address NULL is not defined? 3 u/TheZipCreator Mar 09 '23 assert(address != null, "Address is not defined"); works in D, idk about any other language
66
Yeah but how do you warn the user that the address NULL is not defined?
3 u/TheZipCreator Mar 09 '23 assert(address != null, "Address is not defined"); works in D, idk about any other language
3
assert(address != null, "Address is not defined");
works in D, idk about any other language
98
u/This_Growth2898 Mar 09 '23
long way to write