Closed malimban closed 4 years ago
In Java, you can do public boolean foo() { /** / return true; /**/ return false /**/ and switch which // --> / / to change what is commented out. How would you do so in Python?
public boolean foo() { /** / return true; /**/ return false /**/
In Java, you can do
public boolean foo() { /** / return true; /**/ return false /**/
and switch which // --> / / to change what is commented out. How would you do so in Python?