// Fullname.swift Copyright (c) Kari Laitinen // http://www.naturalprogramming.com // 2014-09-30 File created. // 2015-10-16 Last modification. // This is a simple program that demonstrates the // use of strings. import Foundation print( "\n Please, type in your first name: ", terminator: "" ) var first_name : String! = readLine() print( "\n Please, type in your last name: ", terminator: "" ) var last_name : String! = readLine() print( "\n Your full name is " + first_name + " " + last_name + ".\n\n" )