Hello world/Newbie: Difference between revisions

Content added Content deleted
(MiniScript: added detailed instructions for installing/running)
(add BQN)
Line 336: Line 336:
Once the program finishes, you should have:
Once the program finishes, you should have:
<pre>Hello World!</pre>
<pre>Hello World!</pre>

=={{header|BQN}}==

To use BQN, you need an input method, and a BQN interpreter. This can be solved using the online playground at [https://mlochbaum.github.io/BQN/try.html Try BQN], but if you'd like a local installation, you can check out
[https://mlochbaum.github.io/BQN/#how-do-i-work-with-the-character-set working with the character set] and [https://github.com/dzaima/CBQN/ compile CBQN from source].

If you're using Try BQN you can skip this step: once you have an environment set up, you need to type
<lang>rlwrap ./BQN</lang>
which will set up a repl.

Then type
<lang bqn>"Hello, World!"</lang>
and press Enter (Shift-Enter if you're using Try BQN)


=={{header|C}}==
=={{header|C}}==