Swift--guard

Source: Internet
Author: User

Import UIKit

var str = "Hello, playground"

Func Checkup (person:[string:string]) {
Check the ID card, if the identity card is not brought, you cannot enter the examination room

Guardlet id = person["id"] else {

Print ("No ID, no access to the examination room")
Return

}

Check the admission ticket, if the admission ticket is not brought, you cannot enter the examination room
Guardlet Exanumber = person["Examnumber"] else {
Print ("No admission ticket, no entrance exam!")
Return
}


ID card and admission ticket is complete before you can enter the examination room

Print ("Your ID: \ (ID), admission ticket: \ (exanumber) Please enter the examination room")


}
Checkup (person: ["id": "123456"])
Checkup (Person: ["Examnumber": "654321"]) Checkup (person: ["id": "123456", "Examnumber": "654321"])

Swift--guard

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.