Swift Comments

This tutorial belongs to the Swift series

A comment in Swift can take 2 forms: a single-line comment, and a multi-line comment.

A single-line comment is
//this is a comment
and it can be put at the end of a line of code:
let a = 1 //this i…


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com

This tutorial belongs to the Swift series

A comment in Swift can take 2 forms: a single-line comment, and a multi-line comment.

A single-line comment is

//this is a comment

and it can be put at the end of a line of code:

let a = 1 //this is a comment

A multi-line comment is written using this syntax:

/* this
 is
    a multi-line
 comment
*/

Swift allows to nest multi-line comments:

/* this
 is
    a /* nested */ multi-line
 comment
*/

which is handy especially when commenting out large portions of code that already contains multi-line comments.


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com


Print Share Comment Cite Upload Translate Updates
APA

flaviocopes.com | Sciencx (2021-05-29T05:00:00+00:00) Swift Comments. Retrieved from https://www.scien.cx/2021/05/29/swift-comments/

MLA
" » Swift Comments." flaviocopes.com | Sciencx - Saturday May 29, 2021, https://www.scien.cx/2021/05/29/swift-comments/
HARVARD
flaviocopes.com | Sciencx Saturday May 29, 2021 » Swift Comments., viewed ,<https://www.scien.cx/2021/05/29/swift-comments/>
VANCOUVER
flaviocopes.com | Sciencx - » Swift Comments. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/05/29/swift-comments/
CHICAGO
" » Swift Comments." flaviocopes.com | Sciencx - Accessed . https://www.scien.cx/2021/05/29/swift-comments/
IEEE
" » Swift Comments." flaviocopes.com | Sciencx [Online]. Available: https://www.scien.cx/2021/05/29/swift-comments/. [Accessed: ]
rf:citation
» Swift Comments | flaviocopes.com | Sciencx | https://www.scien.cx/2021/05/29/swift-comments/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.