-
Notifications
You must be signed in to change notification settings - Fork 22
/
README
60 lines (42 loc) · 1.34 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
KONOHA SCRIPTING LANGUAGE
=========================
WHAT IS KONOHA?
---------------
Konoha is a scripting language, characterized by:
* simple
* static
* syntax extensible
The language is based on C-like grammar, not new for everybody.
You will extend your needed grammar as you like.
(To be announced)
INSTALL AND TRY
---------------
At first, you'll download the latest konoha.
$ git clone git://github.com/konoha-project/konoha3.git
You'll have to make a few steps. Type in:
$ mkdir build
$ cd build
$ cmake ..
$ make
$ sudo make install
NOTE: To build konoha, you need cmake build system. For further
information, you will ckeck at: http://www.cmake.org/
If Konoha is installed successfully, you can try Konoha as
an interactive mode.
$ konoha
[gcc 4.7.2 20120921 (Red Hat 4.7.2-2)]
modules: minivm bmgengc iconv
>>> System.p("Hello World!");
- ((shell):1) Hello World!
>>>
DO YOU WANT TO KNOW MORE?
-------------------------
For now, there are very few manuals for programming Konoha. To get
any kinds of useful information about Konoha, you'll at first visit
the following sites:
http://konohascript.org
http://github.com/konoha-project/
We recommend you to join one of the following groups.
Any comment and questions are welcome!!
http://groups.google.com/group/konoha-on-github
Thank you for downloading and trying Konoha!!