Fixed up so it builds

This commit is contained in:
Adam 2013-09-08 22:52:09 -07:00
parent 3cf89d5146
commit b28900b889
7 changed files with 11 additions and 14 deletions

View File

@ -1,4 +1,4 @@
--- ---
language: elixir language: elixir
contributors: contributors:
- ["Joao Marques", "http://github.com/mrshankly"] - ["Joao Marques", "http://github.com/mrshankly"]

View File

@ -1,10 +1,12 @@
--- ---
langage: python language: python
filename: learnpython-fr.py
contributors: contributors:
- ["Louie Dinh", "http://ldinh.ca"] - ["Louie Dinh", "http://ldinh.ca"]
translators: translators:
- ["Sylvain Zyssman", "https://github.com/sylzys"] - ["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. 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.

View File

@ -361,9 +361,6 @@ local mod = require('mod') -- mod.lua 파일을 실행
-- require는 모듈을 포함시키는 표준화된 방법입니다. -- require는 모듈을 포함시키는 표준화된 방법입니다.
-- require는 다음과 같이 동작합니다: (캐싱돼 있지 않을 경우. 하단 참조) -- require는 다음과 같이 동작합니다: (캐싱돼 있지 않을 경우. 하단 참조)
local mod = (function ()
<mod.lua의 내용>
end)()
-- mod.lua가 함수의 본문처럼 되므로 mod.lua 안의 지역 멤버는 -- mod.lua가 함수의 본문처럼 되므로 mod.lua 안의 지역 멤버는
-- 밖에서 볼 수 없습니다. -- 밖에서 볼 수 없습니다.

View File

@ -10,10 +10,7 @@ If you have any feedback please feel free to reach me at
[@the_ozzinator](https://twitter.com/the_ozzinator), or [@the_ozzinator](https://twitter.com/the_ozzinator), or
[osvaldo.t.mendoza@gmail.com](mailto:osvaldo.t.mendoza@gmail.com). [osvaldo.t.mendoza@gmail.com](mailto:osvaldo.t.mendoza@gmail.com).
```Matlab ```matlab
% Comments start with a percent sign. % Comments start with a percent sign.
%{ Multi line comments look %{ Multi line comments look

View File

@ -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) [Read more here.](https://github.com/FeepingCreature/fcc/wiki)
```D ```c
// single line comments start with // // single line comments start with //
/* /*
multiline comments look like this multiline comments look like this

View File

@ -3,8 +3,9 @@ language: python
contributors: contributors:
- ["Louie Dinh", "http://ldinh.ca"] - ["Louie Dinh", "http://ldinh.ca"]
translators: 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 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 Python a fost creat de Guido Van Rossum la începutul anilor '90. Python a devenit astăzi unul din

View File

@ -13,7 +13,7 @@ Go拥有命令式语言的静态类型编译很快执行也很快同时
Go语言有非常棒的标准库还有一个充满热情的社区。 Go语言有非常棒的标准库还有一个充满热情的社区。
```Go ```go
// 单行注释 // 单行注释
/* 多行 /* 多行
注释 */ 注释 */