7548e043fc
This is using an adapted version of UAX#31 to not rely on the ICU database (which isn't available in builds without TextServerAdvanced). It allows most characters used in diverse scripts but not everything.
5 lines
118 B
GDScript
5 lines
118 B
GDScript
func test():
|
||
var port = 0 # Only latin characters.
|
||
var pοrt = 1 # The "ο" is Greek omicron.
|
||
|
||
prints(port, pοrt)
|