-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.hx
More file actions
38 lines (32 loc) · 777 Bytes
/
Main.hx
File metadata and controls
38 lines (32 loc) · 777 Bytes
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
using eu.ohmrun.Walker;
using stx.Nano;
using stx.Pico;
using stx.Log;
import stx.pico.Nada;
#if js
import js.Browser.*;
import eu.ohmrun.walker.html5.History;
import eu.ohmrun.walker.test.HistoryTest;
class Main{
static public function main(){
}
#else
class Main {
static function main() {
trace("main");
var log_facade = __.log().global;
//log_facade.includes.push("eu.ohmrun.walker");
//log_facade.includes.push("eu.ohmrun.walker.test");
//log_facade.includes.push("stx.async");
//log_facade.format = [INCLUDE_LOCATION,INCLUDE_DETAIL];
// log_facade.logic =
// stx.log.Logic.make(
// (_) ->
// log_facade.logic
// && _.always()
// //_.tag('x')
// );
//eu.ohmrun.walker.Test.main();
}
}
#end