Emile Daems
Emile Daems (born 4 April 1938) is a Belgian former professional road racing cyclist.
![]() Daems at the 1961 Tour de France | |
Personal information | |
---|---|
Full name | Emile Daems |
Born | Genval, Belgium | 4 April 1938
Team information | |
Current team | Retired |
Discipline | Road |
Role | Rider |
Professional teams | |
1960–1962 | Philco |
1963–1965 | Peugeot–BP–Englebert |
1966 | Solo–Superia |
Major wins | |
Paris–Roubaix (1963) Giro di Lombardia (1960) Milan–San Remo (1962) Tour de France, 4 stages Giro d'Italia, 2 stages |
Major results
- 1960
- 1st, Giro dell'Appennino
- 1st, Giro di Lombardia
- 1st, Nationale Sluitingsprijs
- 1st, Stages 9a and 19, Giro d'Italia
- 1961
- 1st, Tour of Sardinia
- 1st, Stages 3, Tour de France
- 1962
- 1st, Milan–San Remo
- 1st, Stage 2a, Paris–Nice
- 13th, Overall, Tour de France
- 1st, Stages 5, 16 and 18
- 2nd, points classification
- 1963
- 1st, Paris–Roubaix
gollark: The `ipairs` iterator gives us `key, value` for each item of the table (in order). The key is unnecessary here, so it's just bound to `_`, the convention I've seen a lot for variables you're discarding.
gollark: As you can see, you don't actually need to explicitly compute the length anywhere.
gollark: Here's how I would do it:```lualocal function divisible_by_any(n, factors) for _, factor in ipairs(factors) do if n % factor == 0 then return true end end return falseendlocal primes = { 2, 3 }for i = 2, 100 do if not divisible_by_any(i, primes) then table.insert(primes, i) endendfor _, prime in ipairs(primes) do print(prime) end```
gollark: I can't actually read that because ææææ my eyes but it looks like the same thing with less whitespace.
gollark: I mean, it *sort of* is, but instead of actually marking the things it just checks against each factor.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.