peon/src/peon/stdlib/builtins/misc.pn

8 lines
107 B
Plaintext
Raw Normal View History

2022-10-21 16:10:00 +02:00
# Various miscellaneous utilities
import values;
2022-10-21 16:10:00 +02:00
2022-10-17 11:28:54 +02:00
fn print*[T: any](x: T) {
2022-12-01 22:04:10 +01:00
#pragma[magic: "print"]
2022-10-17 11:28:54 +02:00
}