Files
codeql/unified/ql/test/library-tests/comments/comments.swift
2026-06-12 16:36:33 +02:00

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!")
}