Skip to content

Commit 6e3d32c

Browse files
Pequenas mudanças.
1 parent b224abd commit 6e3d32c

4 files changed

Lines changed: 9 additions & 10 deletions

File tree

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ dub --version
9898

9999
```bash
100100
# Instalar CGD automaticamente
101-
curl -fsSL https://raw.githubusercontent.com/FernandoTheDev/cgd/main/install.sh | sh
101+
curl -fsSL https://raw.githubusercontent.com/FernandoTheDev/cgd/refs/heads/master/install.sh | sh
102102

103103
# Verificar instalação
104104
cgd --help
@@ -113,7 +113,7 @@ cgd --help
113113

114114
```bash
115115
# 1. Clonar o repositório
116-
git clone https://github.com/FernandoTheDev/cgd.git
116+
git clone https://github.com/fernandothedev/cgd.git
117117
cd cgd
118118

119119
# 2. Compilar o CGD com otimizações

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="docs/assets/logo.png" width="150" alt="cgd logo"/>
33
</p>
44

5-
[![Versão](https://img.shields.io/badge/versão-v0.0.6-blue.svg)](https://github.com/fernandothedev/cgd)
5+
[![Versão](https://img.shields.io/badge/versão-v0.1.0-blue.svg)](https://github.com/fernandothedev/cgd)
66

77
# CGD - Compilador Geral Delégua
88

@@ -16,7 +16,7 @@ Compilador para a linguagem de programação [Delegua](https://github.com/Design
1616

1717
```bash
1818
# Linux/macOS - Instalação automática
19-
curl -fsSL https://github.com/FernandoTheDev/cgd/raw/refs/heads/master/install.sh | sh
19+
curl -fsSL https://raw.githubusercontent.com/FernandoTheDev/cgd/refs/heads/master/install.sh | sh
2020

2121
# Verificar instalação
2222
cgd --help
@@ -190,17 +190,16 @@ Iniciado: 11 de agosto de 2025
190190
- [X] Comentários (`//`)
191191
- [ ] Generics/Templates
192192
- [ ] Pattern matching
193-
- [ ] Async/await
194193
- [ ] Memory management customizado
195194

196195
#### **Ferramentas**
197196

198197
- [X] Compilação (`cgd compilar`)
199198
- [X] Transpilação (`cgd transpilar`)
200199
- [X] Benchmarking integrado
201-
- [ ] Debugger
202-
- [ ] Formatter
203-
- [ ] LSP (Language Server Protocol)
200+
- [X] Debugger
201+
- [X] Formatter
202+
- [X] LSP (Language Server Protocol)
204203

205204
### Próximos passos
206205

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<h1 class="title">CGD - Compilador Geral Delégua</h1>
1717
<p class="subtitle">Compilador moderno para a linguagem de
1818
programação Delégua</p>
19-
<span class="version">Versão 0.0.6</span>
19+
<span class="version">Versão 0.1.0</span>
2020
</header>
2121

2222
<nav class="nav">

src/backend/compiler.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ private:
162162

163163
command ~= "-of=" ~ this.arquivoSaida;
164164

165-
writeln("Comando: ", command);
165+
// writeln("[DEBUG] Comando: ", command);
166166

167167
return command;
168168
}

0 commit comments

Comments
 (0)