Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Compile and Execute Swift Online

import Foundation

// déclarer une variable

var prenom = "Marion"
var nom = "Hartmann"

print(prenom + " "+nom)
// déclarer une constante
let constante = 22

print("age \(constante)")
// associer un type à une variable
var nombre1 : Int = 3
var prenom1 : String = "Marion"

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.