Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Thanks for pointing this out because I would have not realized.
Yeah, i know.
I want if someone will make language with some
compiler directives
. I like languages near C++, but want something more flexible.Example of
directive
:#no_abc
-> no 'array bounding checks'#lazy
-> evaluate expression only before it's direct usage#pce
-> partial code execution at compile time(If we have big function and some parameters are constant or already known at compile time. Function must be pure to use this directive)So let's wait for lazyness! Just because it might help a lot... And save us from 'Division by zero exception'. At least JS doesn't have such... So everything works just fine =)
Pure evil
You evaluate all expressions every time. While this is clever, it's not very efficient.