Casting as Abstraction

Cosmos' arithmetic system is a bit intricate. Let's try summing up two numbers.

x=1+2
print(x) //1+2

This occurs because the arithmetic operators are actually functors with special syntax. 1+2 really is a functor of type Math Integer Integer rather than an actual Integer.

In order to get the intended result, we must then convert this functor to an Integer. This is where we use casting.

print(int(x)) //3

Let's look at the following code,

x='c'+y
y='d'
print(str(z)) //'cd'

Because we are using functors, we can write logically pure code that sums up strings (naturally, string arithmetic is supported in Cosmos™ ) even if one or more of the parameters is not defined at the time. Note that y is only defined in the second line.

Only at the end of the program do we need to compute the result, if we need to- for example, in order to write it on the screen.

Prolog has, to say the least, a very poorly thought-out arithmetic system.

Prolog tries to have its cake and eat it too in how it tries to treat arithmetic. It's unsure on whether to consider 1+2 as a number or not. This is done to make a logically sound system but it ends up being unsound in some ways.

Cosmos inherits this system somewhat, as Prolog is its host language. However,

What is a functor?

Most Prolog tutorials simply explain functors as "composite data". Effectively, they're very similar to what's known as named tuples. They may in fact just be named tuples.

The use of the word in Prolog predates the functional use of the word. Despite this, many of the same patterns can be used regardless of whether it's functional or language programming we're talking about. It seems being typed makes logic functors very similar to functional functors.

But what is a functor? You're free to think about this whether it is from a philosophical, mathematical or historical perspective. It gets asked a lot.

Cosmos, however, is only interested in this from a pragmatic perspective. It's enough that we can use them as a language feature to implement lists and other structures. We don't ask "what is a for-statement?". We simply use for-statements.

Cosmos is an user-friendly language. It would not be very user-friendly to not have a ready, general-purpose print statement. As such, a hello world can be written as,

print('hello world')

Note that this will output, 'hello world' While io.writeln('hello world') will output, hello world

In short, write outputs to the user and is the relation to use in a proper program while print can still be used for debugging or short scripts.

Host

Cosmos is currently compiled into Prolog. As such, it's possible to call predicates of Prolog from Cosmos.

rel write(x)
    pl::write(x) //calls Prolog predicate 'write'

Using Cosmos within Prolog

It's possible to do the opposite, that is, embedding Cosmos in a Prolog program.

The following predicates are available in the Swi-Prolog pack.

cstart/0.

Opens the interpreter.

ceval/1.

Evaluates code then closes the session. e.g.

:- ceval('x=1 or y=3').

ui/0.

Graphical swi debugger.

Shorthand for guitracer,trace.

ccompile/1.

Compiles module e.g.

:- cmodule('name') ; name.co is a module file