Giter Site home page Giter Site logo

djun / wa Goto Github PK

View Code? Open in Web Editor NEW

This project forked from wa-lang/wa

0.0 0.0 0.0 1.69 MB

凹语言™ 专注于 WASM 平台的简单、可维护的编译型通用语言 Simple, maintainability, compiled language for developing WebAssembly software

Home Page: https://wa-lang.org

License: Other

C 0.23% Go 97.63% Makefile 0.04% LLVM 1.63% WebAssembly 0.48%

wa's Introduction

🇨🇳 凹语言™ The Wa Programming Language

主页 | Playground | 目标 | 路线 | 社区 | 日志 | 论坛

Document | Playground | Goals | Roadmap | Community | Changelog | Discussions

Build Status Go Report Card Coverage Status GitHub release

凹语言™(凹读音“Wa”)是 针对 WASM 平台设计的的通用编程语言,支持 Linux、macOS 和 Windows 等主流操作系统和 Chrome 等浏览器环境,同时也支持作为独立Shell脚本和被嵌入脚本模式执行。

Wa is a general-purpose programming language designed for developing robustness and maintainability WebAssembly software. Instead of requiring complex toolchains to set up, you can simply go install it - or run it in a browser.

安装和测试 (Install and Run):

  1. go install github.com/wa-lang/wa@latest
  2. wa init -name=_examples/hi
  3. wa run _examples/hi

项目尚处于原型开源阶段,如果有共建和PR需求请 入群交流

The Wa project is still in very early stage. If you want to submit PR, please join the Wechat Group(Speak Chinese) at first.

例子: 凹语言 (Example: Print 凹语言)

打印字符和调用函数(Print rune and call function):

fn main() {
	print('凹')
	print('语')
	print('言')
	print('\n')

	println(add(40, 2))
}

fn add(a: i32, b: i32) => i32 {
	return a+b
}

运行并输出结果 (Execute the program):

$ go run main.go hello.wa 
凹语言
42

例子: 打印素数 (Example: Print Prime)

打印 30 以内的素数 (Print prime numbers up to 30):

# 版权 @2021 凹语言™ 作者。保留所有权利。

fn main() {
	for n := 2; n <= 30; n = n + 1 {
		var isPrime int = 1
		for i := 2; i*i <= n; i = i + 1 {
			if x := n % i; x == 0 {
				isPrime = 0
			}
		}
		if isPrime != 0 {
			println(n)
		}
	}
}

运行并输出结果 (Execute the program):

$ go run main.go run _examples/prime
2
3
5
7
11
13
17
19
23
29

更多例子 (More examples) _examples

作为脚本执行 (Execut as a script)

凹语言本身也可以像 Lua 语言被嵌入 Go 宿主语言环境执行 (The Wa language itself can also be executed like the Lua language embedded in the Go host locale):

package main

import (
	"fmt"
	"github.com/wa-lang/wa/api"
)

func main() {
	output, err := api.RunCode("hello.wa", "fn main() { println(40+2) }")
	fmt.Print(string(output), err)
}

注:作为脚本执行目前只支持本地环境。(Note: Executing as a script currently only supports native environments.)

版权(License)

版权 @2019-2022 凹语言™ 作者。保留所有权利。(Copyrighe @2019-2022 The Wa author. All rights reserved.)

wa's People

Contributors

3dgen avatar chai2010 avatar ohxxx avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.