Tagged Questions
9
votes
2answers
227 views
To uncomment in Japanese?
In the context of computer programming, how to say to uncomment?
For instance, here I uncomment a line:
// Before
// myvar = 3;
// After
myvar = 3;
I would use コメントアウトする, but I also see ...
7
votes
1answer
215 views
When to use 種別 and when to use 区分 when programming
I am having trouble when naming a variable, deciding if I should use ABC種別 or ABC区分. I have been reading a lot of software specifications and the Japanese description usually uses 種別 and 区分 to specify ...