Bobble

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

Bobble, created by User:H33T33, is being developed using C.

Overview

Command Description Example(s) Output
"..." or '...' Inputs string (containing non-command characters) "abc" None
^^^ Outputs all inputted strings and characters "abc" ^^^ abc
^ Multiplies a given number to the power of another number 3^2 ^^^ 9
!!! Takes User input !!! ^^^ Whatever the user inputs
!! Compares values, returns 1/0 1!!0 ^^^ 0
! NOT, Negates values !1 ^^^ 0
>> IF Statement, Runs code within parentheses if given value is non-zero 1>>"abc" ^^^ abc
> Determines if the left integer is larger than the right integer 2>1 ^^^ 1
< Determines if the left integer is smaller than the right integer 2<1 ^^^ 0
<= Initializes Variables "abc"<=var None

Hello, World!

"Hello, world!"^^^