# Otne
**Repository Path**: uxnt/Otne
## Basic Information
- **Project Name**: Otne
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 2
- **Forks**: 0
- **Created**: 2022-03-16
- **Last Updated**: 2022-04-07
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README

### Otne Programing Language
Otne Programing Language is a free and open source translation programming language developed by UXNT from March 6, 2022.
Why Otne? Otne is a 2068 future programming language in "Koton Ation" novels and science fiction films. It uses an atomic furnace to make Otne (ultra-high-tech era).
[简体中文](README.md) • [English](README.en.md)
"Ultimate answer"
In Douglas Adams's science fiction "a guide to the galaxy", a group of highly intelligent aliens specially built a supercomputer - "deep thought" to calculate in order to find the ultimate answer to life, the universe and anything. "Deep thinking" took 7.5 million years to calculate and verify, and the final answer is "42".
Example code:
```otne
import TerminalScreen;
func main(){
printf("42");
TerminalScreen("42");
}
// func main print "42";
// func main TerminalScreen "42";
// 函数 主码 终端屏幕 "42";
```
"Hello, universe" example code:
```otne
import TerminalScreen;
func main(){
printf("Hello, Universe");
TerminalScreen("Hello, Universe");
}
// func main print "Hello, Universe";
// func main TerminalScreen "Hello, Universe";
// 函数 主码 终端屏幕 "你好,宇宙";
```