oters_gui 0.1.8

Graphical library definitions for the oters programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
let draw_fps = fn () -> draw_fps_once () << @(draw_fps ())

let current_time_str = fn () -> {
  let stream = (current_time ()) << @stream;
  stream
}

let time_since_start_str = fn () -> {
  let stream = (time_since_start ()) << @stream;
  stream
}