Go语言中文网 为您找到相关结果 1

介绍Rust

What is rust-lang Rust 是一个由Mozilla主导开发的通用的、编译型计算机语言。它的设计准则为“安全,并发,实用”,支持函数式,并发式,过程式以及面向对象的编程风格。 安装 mac上 brew install rust Linux上 curl https://sh.rustup.rs -sSf | sh 查看版本 rustc -V rust 起手式 //hi.rs fn main(){ println!("hello rust") } 编译执行 rustc hi.rs #编译出 hi执行文件 ./hi #执行 分别看下 C / Golang / Rust 编译出的文件大小 61B hi-c.c 8.3K hi-c 72B hi-go.go 2.0M hi-go 39B...阅读全文

博文 2018-09-07 20:34:41 shooter