測試頁面

程式語言 Rust

Playpen with hello.rs file

extern crate chrono;
use chrono::Local;

fn main() {
    let date = Local::now();
    println!("{}", date.format("%Y-%m-%d %H:%M:%S"));
}

Playpen editable 即時修改功能不像 Jupyter Notebook 多元,目前適合用來學習簡易 Rust 語法。

fn main() {
    let number = 5;
    print!("{}", number);
}

可以探索其他語法的即時編輯功能如 java, golang, nodejs

其他