X01[:}+ix=b];
A program to calculate the nth Fibonacci number.
[[ij*P84*pj9=b]Ni9=b]
A program to show a times table.
Nebbish is a stack-based golf language that uses one printable ASCII character per command. Unlike say, a language like Vyxal, with a command for everything, Nebbish aims to provide a modest set of primitives that combine to tackle golf-style problems orthagonally. The primary goal of the language is to make terse procedural code fun to write. Terseness itself is secondary.
Instruction | Name | Signature | Examples |
---|---|---|---|
+ |
Add | obj obj -- obj |
11+ \ 2 123L2+ \ {3,4,5} 123LI456LT+ \ {5,7,9} |
- |
Subtract | obj obj -- obj |
106L#7- \ 99 |
* |
Multiply | obj obj -- obj |
|
/ |
Divide | obj obj -- obj |
|
^ |
Power | obj obj -- obj |
|
% |
Mod | obj obj -- obj |
|
f |
Floor | obj -- obj |
Instruction | Name |
---|---|
: |
Dup |
~ |
Swap |
, |
Over |
; |
Drop |
I |
Intangibilize |
T |
Tangibilize |
} |
Bury |
{ |
Exhume |
Instruction | Name |
---|---|
a |
Append |
c |
Concat |
l |
Length |
L |
Listify |
s |
Sum |
S |
Sort |
Instruction | Name |
---|---|
" |
String mode |
` |
Command mode |
Instruction | Name |
---|---|
[ |
Start loop |
] |
End loop |
b |
Break if |
i |
iteration index |
j |
deeper iteration index |
k |
deepest iteration index |
Instruction | Name |
---|---|
= |
Equal |
> |
Greater than |
< |
Less than |
Instruction | Name |
---|---|
x |
Copy from X |
X |
Move to X |
y |
Copy from Y |
Y |
Move to Y |
Instruction | Name |
---|---|
p |
|
P |
Prettyprint |
N |
Output newline |
Instruction | Name |
---|---|
d |
Dump |
# |
Join Ints |
r |
Random |
More to come soon!