Both human and LLMs want to write KCL code in non-English languages. This is important and we should support it. Note that errors are currently a bit broken with non-ASCII identifiers, see #4327
10 lines
316 B
Plaintext
10 lines
316 B
Plaintext
---
|
|
source: kcl-lib/src/simulation_tests.rs
|
|
description: Result of unparsing non_english_identifiers.kcl
|
|
---
|
|
comprimentoTotal = 100
|
|
亞當 = 100
|
|
comprimentoRosca = 亞當 * 0.8 // 80% do comprimento total é roscado
|
|
comprimentoCabeça = comprimentoTotal - comprimentoRosca
|
|
assert(comprimentoCabeça, isEqualTo = 20)
|