Bliss

From Esolang
Jump to navigation Jump to search
This is still a work in progress. It may be changed in the future.

Bliss is a concept for a language by User:H33T33. Its goal is to be more straightforward and less intricate than most other languages. While slightly more restrictive, it is a lot easier to read.

Quick Overview

Outputting

nprints "Hello,"
prints "world!"

prints outputs without moving to the next line while nprints does both.

Functions

as function
    check p1
    check p2
    prints p1;p2
exit function
function "Hello,";" world!"

as function Defines a function by the name "function". When called, it will check for any given parameters. In this case, it checks for p1 and p2, where it then joins them and outputs them.