When I try to use not Latin alphabet, the following code gives the error. How to cope with?
type Test* = object
あ: int
い: int
proc add(test: Test): int =
test.あ + test.い
let a = Test(あ: 123, い: 122)
echo a
echo add(a)
test.nim(8, 1) Error: invalid indentation
I want to use Greek letters.
(And I cannot delete my comments here.)
Why not?