Hello World
Hello World
Section titled “Hello World”const message be ///Hello, World///console.log[message]コンパイル結果:
const message = "Hello, World";console.log(message);ファイルにコンパイル:
purus build hello.purusnode hello.jsまたは直接実行:
purus run hello.purusJavaScriptとの主な違い
Section titled “JavaScriptとの主な違い”| JavaScript | Purus |
|---|---|
= | be |
"string" | ///string/// |
fn(args) | fn[args] |
{ } ブロック | インデント |
function | fn |
+ - * / | add sub mul div |
=== !== | eq ne |
&& || ! | and or not |
const x be 42let y be 3.14y be 100fn greet name console.log[///Hello/// add name]
greet[///World///]式本体(toを使用):
fn double x to x mul 2