packages feed

typst-0.1.0.0: test/typ/compiler/comment-00.typ

// Line comment acts as spacing.
A// you
B

// Block comment does not act as spacing, nested block comments.
C/*
 /* */
*/D

// Works in code.
#test(type(/*1*/ 1) //
, "integer")

// End of block comment in line comment.
// Hello */

// Nested line comment.
/*//*/
Still comment.
*/

E