From 018908c950dcd682770d2cd4bfd90ade9fd9a62a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20D=C3=A9trez?= Date: Mon, 9 Sep 2024 15:26:42 +0200 Subject: [PATCH] WIP: Kotlin --- example-files/homoglyph.kt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 example-files/homoglyph.kt 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ǃ + """) +}