Willy Valcke
Willy Valcke was a sailor from the Belgium, who represented his native country at the 1920 Summer Olympics in Ostend, Belgium. Valcke took the 4th place in the 6 Metre.
Personal information | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Nationality | Belgium | |||||||||||||
Born | unknown | |||||||||||||
Died | unknown | |||||||||||||
Sailing career | ||||||||||||||
Class(es) | 6 Metre | |||||||||||||
Competition record
| ||||||||||||||
Updated on 23 February 2015. |
Sources
- Evans, Hilary; Gjerde, Arild; Heijmans, Jeroen; Mallon, Bill; et al. "Willy Valcke Bio, Stats, and Results". Olympics at Sports-Reference.com. Sports Reference LLC. Archived from the original on 18 April 2020. Retrieved 7 February 2015.
- Belgium Olympic Committee, ed. (1957). Olympic Games 1920 – Officiel Report (PDF). Retrieved 8 February 2015.
gollark: Adding a new element:```lualocal x = {1, 2, 3}table.insert(x, 4) -- inserts 4 at the end-- x is now {1, 2, 3, 4}table.insert(x, 2, "a") -- inserts "a" at position 2-- x is now {1, "a", 2, 3, 4}```
gollark: Defining an array-ish table:```lualocal example_table_name = {1, 2, 3, "hi", {}, "mixed types too"}```Iteration:```lualocal x = {"a", "b", "c"}for index, value in ipairs(x) do print(index, value)end-- prints 1 a then 2 b then 3 c```
gollark: Or more accurately maps which can be used as arrays.
gollark: Tables are basically a combination of maps and arrays for some stupid reason.
gollark: Yes, tables.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.