fork download
  1. using static System.Console;
  2.  
  3. public class Program {
  4. public static void Main() => WriteLine(new Animal().estaVivo);
  5. }
  6.  
  7. public class Animal {
  8. public bool estaVivo, usaDrogas = false;
  9. private string Especie;
  10. public Animal() {
  11. estaVivo = true;
  12. WriteLine("Qual a espécie desse animal?");
  13. Especie = ReadLine();
  14. WriteLine(estaVivo); //debug
  15. }
  16. }
  17.  
  18. //https://pt.stackoverflow.com/q/89256/101
Success #stdin #stdout 0.02s 15744KB
stdin
Standard input is empty
stdout
Qual a espécie desse animal?
True
True