Kite 正在参加 2021 年度 OSC 中国开源项目评选,请投票支持!
Kite 在 2021 年度 OSC 中国开源项目评选 中已获得 {{ projectVoteCount }} 票,请投票支持!
2021 年度 OSC 中国开源项目评选 正在火热进行中,快来投票支持你喜欢的开源项目!
2021 年度 OSC 中国开源项目评选 >>> 中场回顾
Kite 获得 2021 年度 OSC 中国开源项目评选「最佳人气项目」 !
授权协议 BSD
开发语言 C/C++
操作系统 Linux
软件类型 开源软件
所属分类 编程语言
开源组织
地区 不详
投 递 者 不详
适用人群 未知
收录时间 2009-01-01

软件简介

Kite 是一个编程语言,用于快速的开发低CPU占用和低内存消耗的应用程序。目前该语言还只是开始,静观其变吧。

下面是一个 Kite 语言编写的程序例子:

class Test [
	property value,
	
	construct() [
		this.value = "";
	],
	
	operator lshift(value) [
		this.value = this.value + value;
	],
	
	method print() [
		this.value|print;
	]
];

tester = make Test();
tester << "foo";
tester << "bar";
tester|print;

# Output:
# foobar
展开阅读全文

评论

点击引领话题📣
发表于大前端专区
2021/03/03 07:07

KITE 推出基于 FOSS 的操作系统

KITE(The Kerala Infrastructure and Technology for Education)发布了一个全新的、基于自由和开放源码软件(FOSS)而定制的操作系统,他们将其称为 KITE GNU-Linux Lite 2020。它将作为印度政府「Vidyashree 计划」的一部分,提供给学生笔记本电脑使用。 它基于 Ubuntu 自由软件平台,预装的软件包括办公软件、语言输入工具、数据库应用程序、DTP-graphics 图像编辑软件、录音和视频编辑软件、编程 IDE(集成开发环境)、Scr...

1
3
发表了资讯
2012/12/27 00:00

Kite 0.2.0 发布,编程语言

Kite 是一个编程语言,用于快速的开发低CPU占用和低内存消耗的应用程序。目前该语言还只是开始,静观其变吧。 下面是一个 Kite 语言编写的程序例子: class Test [   property value,      construct() [     this.value = "";   ],      operator lshift(value) [     this.value = this.value + value;   ],      method print() [     this.value|print;   ] ]; tester = make Test(); tester << "foo"; tester << "bar"; tester|print; # O...

5
2
发表了资讯
2012/12/09 00:00

Kite 0.1.0 发布,LLVM 移植的初始版本

Kite 0.1.0 是 LLVM 移植的初始发布版本。 Kite 是一个编程语言,用于快速的开发低CPU占用和低内存消耗的应用程序。目前该语言还只是开始,静观其变吧。 下面是一个 Kite 语言编写的程序例子: class Test [   property value,      construct() [     this.value = "";   ],      operator lshift(value) [     this.value = this.value + value;   ],      method print() [     this.value|print;   ] ]; tester = make Test(); tester << "...

3
5
没有更多内容
加载失败,请刷新页面
点击加载更多
加载中
下一页
发表了博客
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
发表了问答
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
暂无内容
0 评论
13 收藏
分享
OSCHINA
登录后可查看更多优质内容
返回顶部
顶部