Skip to content

Commit c73ffdf

Browse files
Updates
1 parent abbf431 commit c73ffdf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

readme-pt.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
Language: <a href="readme.md">EN-US</a>
1313

14-
Aqui estão meus códigos, estudos e experimentos em geral, que realizei usando as ferramentas para análise de gramática livre de contexto. As ferramentas que utilizei são <b>lex</b>, <b>yacc</b> e <b>bison</b>.
14+
Aqui estão meus códigos, estudos e experimentos em geral, que realizei usando as ferramentas para análise de gramática livre de contexto, sendo elas <b>lex</b>, <b>yacc</b> e <b>bison</b>.
1515

1616
**Se algum código foi útil para você, considere [ser um patrocinador](https://github.com/sponsors/melchisedech333) :blue_heart:**
1717

@@ -29,25 +29,25 @@ Aqui estão meus códigos, estudos e experimentos em geral, que realizei usando
2929
:hammer_and_wrench: Instruções
3030
---
3131

32-
Each directory is equivalent to a specific test. And to compile run the file <b>compile-and-run.sh</b> passing the directory name as a parameter.
32+
Cada diretório é equivalente a um teste específico. E para compilar execute o arquivo <b>compile-and-run.sh</b> passando o nome do diretório como parâmetro.
3333

3434
```bash
3535
./compile-and-run.sh "2 - filter tokens"
3636
```
3737

38-
After compiling, just run the generated file with the name <b>parsing</b>, and type the input.
38+
Após a compilação, basta executar o arquivo gerado com o nome <b>parsing</b> e digitar o input.
3939

4040
```bash
4141
./parsing
4242
```
4343

44-
For this example in question (using the <b>2 - filter tokens</b>), a valid input could be:
44+
Para este exemplo em questão (usando o <b>2 - filter tokens</b>), uma entrada válida pode ser:
4545

4646
```
4747
10 20 30 A
4848
```
4949

50-
For this input, the output will be:
50+
Para esta entrada, a saída será:
5151

5252
```
5353
type: INTEGER
@@ -63,7 +63,7 @@ type: UNKNOWN
6363
token: A
6464
```
6565

66-
It is important to mention that within each directory there is a file called <b>input.txt</b>, which contain one (or more) possible example entries.
66+
É importante mencionar que dentro de cada diretório existe um arquivo chamado <b>input.txt</b>, que contém uma (ou mais) entradas de exemplo possíveis.
6767

6868
<br>
6969

0 commit comments

Comments
 (0)