Native Code Contribution Portal
Language, Decoded — Expedition Tiny Aya
Write Python code in your native language using Legesher and contribute to our research on native-language programming.
How it works:
- Select your language and an exercise
- Write your solution using Legesher (native keywords + native variable names)
- Click Run to verify your code works
- Fill in the metadata and click Submit
Your language
Exercise
Estimated time: ~10 minutes
写一个程序,打印从 1 到 30 的数字。
规则:
- 如果数字能被 3 整除,打印 "嘶嘶" 而不是数字
- 如果数字能被 5 整除,打印 "嗡嗡" 而不是数字
- 如果数字既能被 3 又能被 5 整除,打印 "嘶嘶嗡嗡"
预期输出示例:1, 2, 嘶嘶, 4, 嗡嗡, 嘶嘶, 7, ...
What counts as native code?
- Variables, functions, and classes named in your language
- Written from scratch — not translated from an English solution
- Reflects how you would naturally think about the problem
- Uses Legesher keywords throughout
What doesn't qualify?
- Word-for-word translations of English code
- AI-generated code
- English variable names with only keywords swapped
Need help? Read the full criteria document.