diff options
Diffstat (limited to 'pt-br/typescript-pt.html.markdown')
-rw-r--r-- | pt-br/typescript-pt.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pt-br/typescript-pt.html.markdown b/pt-br/typescript-pt.html.markdown index f2eeadc3..0fe9f8db 100644 --- a/pt-br/typescript-pt.html.markdown +++ b/pt-br/typescript-pt.html.markdown @@ -16,7 +16,7 @@ Este artigo irá se concentrar apenas na sintaxe extra do TypeScript, ao contrá Para testar o compilador TypeScript, vá para o [Playground](https://www.typescriptlang.org/Playground), onde você vai ser capaz de escrever código, ter auto conclusão e ver diretamente o JavaScript emitido. -```js +```ts // Existem 3 tipos básicos no TypeScript var isDone: boolean = false; var lines: number = 42; |