mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-22 23:01:41 +03:00
Fixed up so it builds
This commit is contained in:
parent
3cf89d5146
commit
b28900b889
@ -1,4 +1,4 @@
|
||||
---
|
||||
---
|
||||
language: elixir
|
||||
contributors:
|
||||
- ["Joao Marques", "http://github.com/mrshankly"]
|
||||
|
@ -1,10 +1,12 @@
|
||||
---
|
||||
langage: python
|
||||
language: python
|
||||
filename: learnpython-fr.py
|
||||
contributors:
|
||||
- ["Louie Dinh", "http://ldinh.ca"]
|
||||
- ["Louie Dinh", "http://ldinh.ca"]
|
||||
translators:
|
||||
- ["Sylvain Zyssman", "https://github.com/sylzys"]
|
||||
filename: learnpython-fr.py
|
||||
- ["Nami-Doc", "https://github.com/Nami-Doc"]
|
||||
lang: fr-fr
|
||||
---
|
||||
|
||||
Python a été créé par Guido Van Rossum au début des années 90. C'est maintenant un des langages de programmation les plus populaires.
|
||||
|
@ -361,9 +361,6 @@ local mod = require('mod') -- mod.lua 파일을 실행
|
||||
|
||||
-- require는 모듈을 포함시키는 표준화된 방법입니다.
|
||||
-- require는 다음과 같이 동작합니다: (캐싱돼 있지 않을 경우. 하단 참조)
|
||||
local mod = (function ()
|
||||
<mod.lua의 내용>
|
||||
end)()
|
||||
-- mod.lua가 함수의 본문처럼 되므로 mod.lua 안의 지역 멤버는
|
||||
-- 밖에서 볼 수 없습니다.
|
||||
|
||||
|
@ -10,10 +10,7 @@ If you have any feedback please feel free to reach me at
|
||||
[@the_ozzinator](https://twitter.com/the_ozzinator), or
|
||||
[osvaldo.t.mendoza@gmail.com](mailto:osvaldo.t.mendoza@gmail.com).
|
||||
|
||||
```Matlab
|
||||
|
||||
|
||||
|
||||
```matlab
|
||||
% Comments start with a percent sign.
|
||||
|
||||
%{ Multi line comments look
|
||||
|
@ -9,7 +9,7 @@ Neat is basically a smaller version of D1 with some experimental syntax and a fo
|
||||
|
||||
[Read more here.](https://github.com/FeepingCreature/fcc/wiki)
|
||||
|
||||
```D
|
||||
```c
|
||||
// single line comments start with //
|
||||
/*
|
||||
multiline comments look like this
|
||||
|
@ -3,8 +3,9 @@ language: python
|
||||
contributors:
|
||||
- ["Louie Dinh", "http://ldinh.ca"]
|
||||
translators:
|
||||
- ["Ovidiu Ciule", "https://github.com/ociule"] lang: ro-ro filename: python-ro.html.markdown
|
||||
- ["Ovidiu Ciule", "https://github.com/ociule"]
|
||||
filename: learnpython-ro.py
|
||||
lang: ro-ro
|
||||
---
|
||||
|
||||
Python a fost creat de Guido Van Rossum la începutul anilor '90. Python a devenit astăzi unul din
|
||||
|
@ -13,7 +13,7 @@ Go拥有命令式语言的静态类型,编译很快,执行也很快,同时
|
||||
|
||||
Go语言有非常棒的标准库,还有一个充满热情的社区。
|
||||
|
||||
```Go
|
||||
```go
|
||||
// 单行注释
|
||||
/* 多行
|
||||
注释 */
|
||||
|
Loading…
Reference in New Issue
Block a user