blob: baa0bdb998214c811bba206d4e74544d8d5c0a02 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
/// Writes a string to standard output.
///
/// If you want your output to be printed on its own line see `println`.
///
/// ## Example
///
/// ```
/// > io.print("Hi mum")
/// // -> Hi mum
/// Nil
/// ```
///
pub fn print(string: String) -> Nil {
do_print(string)
}
if erlang {
fn do_print(string: String) -> Nil {
erl_print("~s", [string])
Nil
}
}
if javascript {
external fn do_print(String) -> Nil =
"../gleam_stdlib.js" "print"
}
/// Writes a string to standard output, appending a newline to the end.
///
/// ## Example
///
/// > io.println("Hi mum")
/// // -> Hi mum
/// Nil
///
pub fn println(string: String) -> Nil {
do_println(string)
}
if erlang {
fn do_println(string: String) -> Nil {
erl_print("~ts\n", [string])
Nil
}
}
if javascript {
external fn do_println(String) -> Nil =
"../gleam_stdlib.js" "log"
}
/// Prints a value to standard output using Erlang syntax.
///
/// The value is returned after being printed so it can be used in pipelines.
///
/// ## Example
///
/// > io.debug("Hi mum")
/// // -> <<"Hi mum">>
/// "Hi mum"
///
/// > io.debug(Ok(1))
/// // -> {ok, 1}
/// Ok(1)
///
/// > import list
/// > [1, 2]
/// > |> list.map(fn(x) { x + 1 })
/// > |> io.debug
/// > |> list.map(fn(x) { x * 2 })
/// // -> [2, 3]
/// [4, 6]
///
pub fn debug(term: anything) -> anything {
debug_print(term)
term
}
if erlang {
fn debug_print(term: anything) -> DoNotLeak {
erl_print("~tp\n", [term])
}
}
if javascript {
external fn debug_print(anything) -> Nil =
"../gleam_stdlib.js" "log"
}
if erlang {
external type DoNotLeak
external fn erl_print(String, List(a)) -> DoNotLeak =
"io" "fwrite"
}
|