Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Bonjour!
Cette mini démo présente trois fonctionnalités intéressantes de Tech.io :
- un markdown
- un exercice en live coding
- un questionnaires
Exercice
Luke, combien d'étoiles y a t'il dans les galaxies ?
1
2
3
4
5
6
7
8
fun countAllStars(vararg galaxies: Int): Int {
var totalStars = 0
for (stars in galaxies) {
totalStars = stars
}
return totalStars
}
Enter to Rename, Shift+Enter to Preview
En kotlin, quelle méthode permet de faire la somme des éléments d'un tableau
Correction
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content