📅  最后修改于: 2023-12-03 15:15:12.542000             🧑  作者: Mango
Funget 是一种基于 C 语言的编程语言,它的目标是为开发者提供更有趣、更简洁的编程体验。Funget 简单易学,具有灵活的语法和丰富的功能,适用于各种编程场景。
以下是一个使用 Funget 编写的 "Hello, World!" 程序的示例:
fun void main() {
print("Hello, World!");
}
fun void main() {
int age = 25;
float height = 1.8;
char initial = 'J';
bool isStudent = true;
}
fun void checkAge(int age) {
if (age >= 18) {
print("You are an adult!");
} else {
print("You are a minor!");
}
}
fun void countdown() {
int count = 10;
while (count >= 0) {
print(count);
count = count - 1;
}
}
fun int add(int a, int b) {
return a + b;
}
fun void stringExample() {
string name = "Funget";
int length = strlen(name);
print("Length of name: " + length);
string uppercaseName = toupper(name);
print("Uppercase name: " + uppercaseName);
}
fun void fileExample() {
file myfile = fopen("example.txt", "w");
if (myfile != NULL) {
fputs("This is an example file.", myfile);
fclose(myfile);
}
}
以上仅为 Funget 编程语言的一部分功能和语法示例,该语言还有更多丰富的特性等待您去探索和使用。编写代码时请参考 Funget 的官方文档获取更多信息。
注意: 以上代码仅用于示例,可能会存在语法错误或缺少必要的错误处理。请在实际开发中注意代码的正确性和安全性。