-
Notifications
You must be signed in to change notification settings - Fork 4
/
README
33 lines (21 loc) · 988 Bytes
/
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
The dojo-polyglot-environ aims to be a multi-language environment for
dojos sesions. It implements features of different tools and try to
make easy the use of them.
Creating your dojo script
=========================
To create the initial script of your dojo session, execute the
following code with the appropriate arguments:
$ ./dojo-polyglot-environ.py -c PROBLEM -l LANGUAGE
$ ./dojo-polyglot-environ.py -c FibonacciSequence -l python
$ ./dojo-polyglot-environ.py -c CollatzConjecture -l ruby
...
Executing the session daemon
============================
Once you have created your dojo script, you need to start the
daemon before start coding. You could also set the timeout of the
session at your convenience, the default value is 300 seconds.
$ ./dojo-polyglot-environ.py -d SCRIPT [ -t TIMEOUT ]
$ ./dojo-polyglot-environ.py -d fibonaccisequence.py
$ ./dojo-polyglot-environ.py -d collatzconjecture.rb -t 420
...
And that's all... easy as 1, 2, 3.