You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme-pt.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@
11
11
12
12
Language: <ahref="readme.md">EN-US</a>
13
13
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>.
15
15
16
16
**Se algum código foi útil para você, considere [ser um patrocinador](https://github.com/sponsors/melchisedech333):blue_heart:**
17
17
@@ -29,25 +29,25 @@ Aqui estão meus códigos, estudos e experimentos em geral, que realizei usando
29
29
:hammer_and_wrench: Instruções
30
30
---
31
31
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.
33
33
34
34
```bash
35
35
./compile-and-run.sh "2 - filter tokens"
36
36
```
37
37
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.
39
39
40
40
```bash
41
41
./parsing
42
42
```
43
43
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:
45
45
46
46
```
47
47
10 20 30 A
48
48
```
49
49
50
-
For this input, the output will be:
50
+
Para esta entrada, a saída será:
51
51
52
52
```
53
53
type: INTEGER
@@ -63,7 +63,7 @@ type: UNKNOWN
63
63
token: A
64
64
```
65
65
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.
0 commit comments