|
Post by Admin on Sept 4, 2012 16:47:24 GMT -5
Lets begin with what cloavy is - a programming language written in Java with the purpose of simple to learn but powerful. It is currently in alpha version.
Stuff you can do: - create a 2D / 3D game - create an application - create a presentation
HellowWorld: Every function in cloavy starts with #, ex: #say
In this first tutorial, we will be using the say function, defining variables, and using defined variables. First, open up notepad and type in the following code not including ones behind //.
Every line must end with ;
#say hello world!; //says hello world $var name 8; //define variable as name with the value 8, note that it can also be defined as a word or a single letter //for an already defined variable, use ' before the variable name so it looks like 'name #say 'name; //says the value of name which was defined as 8
Save the code to notepad as test.cloa and open it up with the compiler. You should get the results:
Hello world! 8
Prototype of say: #say [value/variable]; Please leave a reply if you have further questions, more tutorials coming soon!
|
|
|
Post by HELP on Sept 6, 2012 13:35:32 GMT -5
help i cant make new.
|
|
|
Post by Admin on Sept 6, 2012 13:47:37 GMT -5
help i cant make new. I'm sorry but we are working on the feature. It will come out in the next updates.
|
|