Exemplo n.º 1
0
        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"));
        }
Exemplo n.º 2
0
        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"));
        }