CPAL Playground

x
 
1
/*
2
Licence Creative Commons CC0 - "No Rights Reserved"
3
@keywords string, format data into string; time64
4
*/
5
6
init() 
7
{
8
  var uint8: sfloat[10];
9
  const float32: f1 = 1.0/3.0;
10
  var uint8: stime[50];
11
  const time64: t1 = 123456789101112ps; /* 0d0h2mn3s456ms789us101ns112ps */
12
  float_to_string: {
13
    uint8.print(sfloat,"%f", f1);
14
    IO.println(sfloat);
15
  }
16
  time_to_string: {
17
    uint8.print(stime,"%t", t1);
18
    IO.println(stime);
19
  }
20
}
21
22
23

for ms or try the desktop editor with advanced diagram views
Quiet mode disabled
[0.000000000000:ASSIGN] Assign cpal_system new value: Scheduling_Policy.FIFO
[0.000000000000:PRINTLN] 0.333333
[0.000000000000:PRINTLN] 0d0h2mn3s456ms789us101ns112ps
EXIT (SUCCESS) AT 0 (0)