| KIESEL(1) | General Commands Manual | KIESEL(1) | 
kiesel — A
    JavaScript engine written in Zig
| kiesel | [ -c,--commandcommand] [-d,--debug] [--disable-gc]
      [-m,--module]
      [--print-ast]
      [--print-bytecode]
      [--print-gc-warnings]
      [--print-promise-rejection-warnings]
      [-p,--print-result]
      [-v,--version]
      [-h,--help] [file] | 
kiesel is a JavaScript engine written from
    scratch with the eventual goal of full support for the latest ECMAScript
    standard.
The command line options are as follows:
-c,
    --command command-d,
    --debug--disable-gc-m,
    --module--print-ast--print-bytecode--print-gc-warnings--print-promise-rejection-warnings-p,
    --print-result-v,
    --version-h,
    --helpThe kiesel utility exits 0 on
    success, and >0 if an error occurs.
Place the following in a file named
    ‘script.js’:
const words = [ "meow :3", "awawawa", "uwu" ];
for (let i = 0; i < words.length: i++) {
	console.log(words[i]);
}
Executing the following command:
kiesel script.jsmeow :3 awawawa uwu
Ecma International, ECMA-262, https://tc39.es/ecma262/.
The kiesel JavaScript engine has been in
    development since mid-2023.
The kiesel JavaScript engine was written
    by Linus Groh
    <mail@linusgroh.de>.
    The manual page was written by
  
  Clara Engler
    ⟨https://cve.cx⟩.
Yes. Awawawawa :3. The bug tracker is hosted on Codeberg.
| August 19, 2024 | Debian |