Coconut Language Manual

Your guide to understanding and using Coconut Language

Introduction

Coconut Language is a simple, entry-level programming language designed to help new programmers learn fundamental programming concepts.

Ver 7.0 Features

Basic Syntax

In Coconut, the syntax is simple and intuitive. Here are some examples:

                SET x 10
                ADD x 5
                MULTIPLY x 3
                DIVIDE x 4
                PRINT x
            

The above program sets the variable x to 10, adds 5 to it, multiplies it by 3, divides it by 4, and prints the result (3.75).