mirror of
https://github.com/tiennm99/godot.git
synced 2026-06-20 21:46:42 +00:00
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.
6 lines
118 B
GDScript
6 lines
118 B
GDScript
func test():
|
||
var port = 0 # Only latin characters.
|
||
var pοrt = 1 # The "ο" is Greek omicron.
|
||
|
||
prints(port, pοrt)
|