Skip to content

Instantly share code, notes, and snippets.

@RodriguesUmbelino
Forked from TheMuellenator/variables.swift
Created June 22, 2020 17:50
Show Gist options
  • Save RodriguesUmbelino/7eb7b17a4f81661833b0c6e07252bdf5 to your computer and use it in GitHub Desktop.
Save RodriguesUmbelino/7eb7b17a4f81661833b0c6e07252bdf5 to your computer and use it in GitHub Desktop.
iOS13 repl.it - Variables Challenge Solution
var a = 5
var b = 8
var c = a
a = b
b = c
print("a: \(a)")
print("b: \(b)")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment