Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- reple -env nim ✔ 10405 10:05:50
- > echo "yes"
- Hint: used config file '/home/striky/.choosenim/toolchains/nim-0.19.0/config/nim.cfg' [Conf]
- Hint: system [Processing]
- Hint: repl0 [Processing]
- Hint: strformat [Processing]
- Hint: macros [Processing]
- Hint: parseutils [Processing]
- Hint: unicode [Processing]
- Hint: strutils [Processing]
- Hint: math [Processing]
- Hint: bitops [Processing]
- Hint: algorithm [Processing]
- CC: repl0
- Hint: [Link]
- Hint: operation successful (21521 lines compiled; 0.882 sec total; 31.371MiB peakmem; Debug Build) [SuccessX]
- running bin_fname: /tmp/repl/repl0, output_fname/tmp/repl/repl0.out
- yes
- > echo "yes"
- Hint: used config file '/home/striky/.choosenim/toolchains/nim-0.19.0/config/nim.cfg' [Conf]
- Hint: system [Processing]
- Hint: repl1 [Processing]
- Hint: strformat [Processing]
- Hint: macros [Processing]
- Hint: parseutils [Processing]
- Hint: unicode [Processing]
- Hint: strutils [Processing]
- Hint: math [Processing]
- Hint: bitops [Processing]
- Hint: algorithm [Processing]
- CC: repl1
- Hint: [Link]
- Hint: operation successful (21523 lines compiled; 0.870 sec total; 31.371MiB peakmem; Debug Build) [SuccessX]
- running bin_fname: /tmp/repl/repl1, output_fname/tmp/repl/repl1.out
- yes
- > echo "yes"
- Hint: used config file '/home/striky/.choosenim/toolchains/nim-0.19.0/config/nim.cfg' [Conf]
- Hint: system [Processing]
- Hint: repl2 [Processing]
- Hint: strformat [Processing]
- Hint: macros [Processing]
- Hint: parseutils [Processing]
- Hint: unicode [Processing]
- Hint: strutils [Processing]
- Hint: math [Processing]
- Hint: bitops [Processing]
- Hint: algorithm [Processing]
- CC: repl2
- Hint: [Link]
- Hint: operation successful (21525 lines compiled; 0.886 sec total; 31.371MiB peakmem; Debug Build) [SuccessX]
- running bin_fname: /tmp/repl/repl2, output_fname/tmp/repl/repl2.out
- yes
- > var x = 5
- Hint: used config file '/home/striky/.choosenim/toolchains/nim-0.19.0/config/nim.cfg' [Conf]
- Hint: system [Processing]
- Hint: repl3 [Processing]
- Hint: strformat [Processing]
- Hint: macros [Processing]
- Hint: parseutils [Processing]
- Hint: unicode [Processing]
- Hint: strutils [Processing]
- Hint: math [Processing]
- Hint: bitops [Processing]
- Hint: algorithm [Processing]
- CC: repl3
- Hint: [Link]
- Hint: operation successful (21527 lines compiled; 0.856 sec total; 31.371MiB peakmem; Debug Build) [SuccessX]
- running bin_fname: /tmp/repl/repl3, output_fname/tmp/repl/repl3.out
- > echo fmt("X {x}")
- Hint: used config file '/home/striky/.choosenim/toolchains/nim-0.19.0/config/nim.cfg' [Conf]
- Hint: system [Processing]
- Hint: repl4 [Processing]
- Hint: strformat [Processing]
- Hint: macros [Processing]
- Hint: parseutils [Processing]
- Hint: unicode [Processing]
- Hint: strutils [Processing]
- Hint: math [Processing]
- Hint: bitops [Processing]
- Hint: algorithm [Processing]
- CC: repl4
- CC: stdlib_system
- Hint: [Link]
- Hint: operation successful (21998 lines compiled; 1.355 sec total; 31.371MiB peakmem; Debug Build) [SuccessX]
- running bin_fname: /tmp/repl/repl4, output_fname/tmp/repl/repl4.out
- X 5
- > $proc myhello() =
- > echo "hello
- > $
- Hint: used config file '/home/striky/.choosenim/toolchains/nim-0.19.0/config/nim.cfg' [Conf]
- Hint: system [Processing]
- Hint: repl5 [Processing]
- Hint: strformat [Processing]
- Hint: macros [Processing]
- Hint: parseutils [Processing]
- Hint: unicode [Processing]
- Hint: strutils [Processing]
- Hint: math [Processing]
- Hint: bitops [Processing]
- Hint: algorithm [Processing]
- repl5.nim(3, 9) Error: closing " expected
- > $proc myhello(): void =
- > echo "yea"
- > $
- Hint: used config file '/home/striky/.choosenim/toolchains/nim-0.19.0/config/nim.cfg' [Conf]
- Hint: system [Processing]
- Hint: repl5 [Processing]
- Hint: strformat [Processing]
- Hint: macros [Processing]
- Hint: parseutils [Processing]
- Hint: unicode [Processing]
- Hint: strutils [Processing]
- Hint: math [Processing]
- Hint: bitops [Processing]
- Hint: algorithm [Processing]
- repl5.nim(2, 6) Hint: 'repl5.myhello()[declared in repl5.nim(2, 5)]' is declared but not used [XDeclaredButNotUsed]
- CC: repl5
- Hint: [Link]
- Hint: operation successful (22001 lines compiled; 0.896 sec total; 31.371MiB peakmem; Debug Build) [SuccessX]
- running bin_fname: /tmp/repl/repl5, output_fname/tmp/repl/repl5.out
- > myhello()
- Hint: used config file '/home/striky/.choosenim/toolchains/nim-0.19.0/config/nim.cfg' [Conf]
- Hint: system [Processing]
- Hint: repl6 [Processing]
- Hint: strformat [Processing]
- Hint: macros [Processing]
- Hint: parseutils [Processing]
- Hint: unicode [Processing]
- Hint: strutils [Processing]
- Hint: math [Processing]
- Hint: bitops [Processing]
- Hint: algorithm [Processing]
- CC: repl6
- CC: stdlib_system
- CC: stdlib_strformat
- CC: stdlib_strutils
- CC: stdlib_macros
- CC: stdlib_parseutils
- CC: stdlib_unicode
- CC: stdlib_math
- CC: stdlib_bitops
- CC: stdlib_algorithm
- Hint: [Link]
- Hint: operation successful (22002 lines compiled; 1.449 sec total; 31.371MiB peakmem; Debug Build) [SuccessX]
- running bin_fname: /tmp/repl/repl6, output_fname/tmp/repl/repl6.out
- yea
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement