SebLague / Chess-Challenge

Create your own tiny chess bot!
https://www.youtube.com/watch?v=Ne40a5LkK6A
MIT License
1.78k stars 1.07k forks source link

Allowed to use "using static System.Math"? #407

Closed DigitalFork closed 11 months ago

DigitalFork commented 11 months ago

Is the namespace "System.Math" allowed as a means of saving tokens? The rules specified 5 allowed namespaces but given that Math is already in System, it seemed worth asking over.

SebLague commented 11 months ago

Yes, you can do 'using static' for any class inside the allowed namespaces. Since Math is a class in System, this is allowed.