Files
lib_compiler/tests/doc_comments2.txt
2024-04-13 15:29:53 +02:00

17 lines
160 B
Plaintext

/** package
* package doc comment
*/
/** file
* file doc comment
*/
/**
* normal doc comment
*/
something :: proc() {
}
main :: proc(): int {
return 0;
}