| Commit message (Collapse) | Author | Age | Lines |
... | |
| | | | | |\| | | | | | | | | | | |
|
| | | |_|/ / / / / / / / / / / /
| | |/| | | | | | | | | | | | | |
|
| | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | |
[Objective-C/en] Adds description of how to define generic classes in Xcode 7.0
|
| | | | |/ / / / / / / / / / / /
| | | |/| | | | | | | | | | | | |
|
| | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | |
[python] Minor correction
|
| | | | | |/ / / / / / / / / / /
| | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | |
calling li.index(2) with li as [1, 2, 3, 4, 5, 6] will return 1 not 3
|
| | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | |
[python] Updated tuple examples for clarity
|
| | | | | |/ / / / / / / / / / / |
|
| | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | |
Added BigDecimal float constructor caveat
|
| | | | | |/ / / / / / / / / / / |
|
| | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | |
[JavaScript/ms-my] Added Malay (Malaysia) translation for JavaScript
|
| | | | | |/ / / / / / / / / / / |
|
| | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | |
Improved int division comment and code
|
| | | | | | | | | | | | | | | | | |
|
| | | | | |/ / / / / / / / / / / |
|
| | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | |/ / / / / / / / / / /
| | | | |/| / / / / / / / / / /
| | | | | |/ / / / / / / / / / |
[haskell/en]: Fix !! operator
|
| | | | |/ / / / / / / / / /
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
- Use a finite list, as infinite lists are not introduced yet
- Use a list starting from 1 instead of 0, to make it obvious that
the element returned comes from the list (and is not the second
argument to !!).
|
| | | |/| | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
Delete unused double quote.
|
| | | |/ / / / / / / / / /
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Delete unused double quote.
|
| | | |\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
[coffeescript/hu] add Hungarian translation
|
| | | | | | | | | | | | | | |
|
| | | | | | | | | | | | | | |
|
| | | |\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
[java/en] Enum Type
|
| | | | | | | | | | | | | | | |
|
| | | | | | | | | | | | | | | |
|
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
Outputs in line.
|
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
Short overview about enum type.
|
| | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | |
Delete unnecessary line on english.
|
| | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | |
Delete unnecessary line on english.
|
| | | |\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | |/ / / / / / / / / / / /
| | | |/| | | | | | | | | | | | |
Modified string format [python/en]
|
| | | | | | | | | | | | | | | | |
|
| | | | | |_|/ / / / / / / / /
| | | | |/| | | | | | | | | | |
|
| | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | |_|_|/ / / / / / / / /
| | | |/| | | | | | | | | | | |
[javascript/en] Adding a small blurb to extend upon string concatenation
|
| | | |/ / / / / / / / / / / |
|
| | | |\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
[C/en] Fix VLA example
|
| | |_|/ / / / / / / / / / /
| |/| | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
The current example seems to be trying to set a size for a char buffer,
use fgets to populate that buffer, and then use strtoul to convert the
char content to an unsigned integer. However, this doesn't work as
intended (in fact, it results in printing "sizeof array = 0"), and so
adapt to a simpler fscanf example. Also remove some ambiguous language
in the example output.
|
| | | |\ \ \ \ \ \ \ \ \ \ \
| | | | |_|_|_|_|_|/ / / / /
| | | |/| | | | | | | | | | |
[livescript/fr] Correct the translator github repository
|
| | | |/ / / / / / / / / / |
|
| | | |\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
[edn/en] Add a short tutorial for EDN
|
| | | | | | | | | | | | | | |
|
| | | | | | | | | | | | | | |
|
| | | | | | | | | | | | | | |
|
| | | | |/ / / / / / / / / |
|
| | | |\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
[haskell/zh-cn]fix error
|
| | | | | | | | | | | | | | |
|
| | | |\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
[java/cn] Fix broken links for chinese version of java docs
|
| | | | | | | | | | | | | | | |
|
| | | | | | | | | | | | | | | |
|
| | | | | | | | | | | | | | | |
|
| | | | | | | | | | | | | | | |
|