public readfl(ILenguaje lenguaje) : base(lenguaje) { Nombre = NOMBRE; Parámetros.Añadir(new Parámetro { Tipo = new TipoString(Lenguaje), Nombre = "texto" }); Instrucciones.Enqueue(new LeerFichero("texto")); }
public println(ILenguaje lenguaje) : base(lenguaje) { Nombre = NOMBRE; Parámetros.Añadir(new Parámetro { Tipo = new TipoString(Lenguaje), Nombre = "texto" }); Instrucciones.Enqueue(new MostrarPorConsola("texto")); }