We are currently working on new rules for what content should and shouldn't be allowed on this website, and are looking for feedback! See Esolang:2026 topicality proposal to view and give feedback on the current draft.

Kava

From Esolang
(Redirected from !?)
Jump to navigation Jump to search
This article is not detailed enough and needs to be expanded. Please help us by adding some more information.
Not to be confused with Kawa.

Kava is an esolang created by User:Ractangle

Commands

Commands Action
Kava.function Creates a function
print Prints something
variable Declares a variable
if...?/unless...? Conditional
user Gets user input
plug *library* in imports a library
: Either halts the program or end a function

Examples

Hello, world!

Kava.function main;
(print|Hello, world!|:)

Truth-machine

plug var in;
Kava.function one;
(print|1|;f[one||:])
Kava.function main;
(var|i;(user)|
if [i=1]?=f[one||]
unless?=print|1|:)