diff --git a/example-files/homoglyph.kt b/example-files/homoglyph.kt new file mode 100644 index 0000000..a50c82a --- /dev/null +++ b/example-files/homoglyph.kt @@ -0,0 +1,14 @@ +// Allowed in commentsǃ +/* Allowed in + multiline commentsǃ */ + +fun main(args : Array) { + if environmentǃ="PROD" { + // ... + } + println("Hello, World!") + print("Allowed in stringǃ") + print(""" + Allowed in multiline stringǃ + """) +}