mirror of
https://github.com/github/codeql.git
synced 2026-08-01 16:02:57 +02:00
12 lines
183 B
Swift
12 lines
183 B
Swift
// Hello this is swift
|
|
|
|
/*
|
|
* This is a multi-line comment
|
|
* It should be ignored by the parser
|
|
*/
|
|
|
|
func hello() {
|
|
// This is a single-line comment
|
|
print("Hello, world!")
|
|
}
|