This channel is intended for people just starting with the Raku Programming Language (raku.org). Logs are available at irclogs.raku.org/raku-beginner/live.html Set by lizmat on 8 June 2022. |
|||
00:07
deoac joined
|
|||
deoac | What is the keyboard shortcut to give focus to the search box on docs.raku.org? | 00:10 | |
Nemokosch | is there such a keyboard shortcut? | 00:19 | |
I can't recall any keyboard shortcuts on the site but if you know one, that would help chase down where they might be defined | 00:20 | ||
rf | There should be | 00:30 | |
deoac: Press tab 5 times | 00:31 | ||
00:34
NemokoschKiwi left
|
|||
deoac | Yeah, that works. But there should be a dedicated keystroke shortcut, IMHO. | 00:37 | |
01:45
systems joined
02:12
Guest5682 joined,
deoac left,
Guest5682 is now known as tg57
02:29
tg57 left
02:33
rf left
02:45
jgaz left
02:56
snonux left
02:57
snonux joined,
samebchase2 joined
02:58
samebchase left,
samebchase2 is now known as samebchase
03:09
tg57 joined,
tg57 left
|
|||
shmup | m: my $e = Proc::Async.new: 'echo', '-n', 'hello'; $e.stdout.tap( -> $str { say $str; }); my $p = $e.start; await $p; | 03:30 | |
camelia | hell o |
||
shmup | why is here a \n before the o in hello? | ||
03:55
systems left
04:10
Heptite left
|
|||
gfldex | m: my $e = Proc::Async.new: 'echo', '-n', 'hello'; $e.stdout.lines.tap( -> $str { say $str; }); my $p = $e.start; await $p; | 08:14 | |
camelia | hello | ||
12:56
sivoais left,
destroycomputers left,
nicole left
13:00
sivoais joined,
destroycomputers joined,
nicole joined
|
|||
shmup | ahh, i see. ty gfldex | 14:26 | |
14:47
jgaz joined
14:56
Heptite joined
15:26
rf joined
17:41
QhpAptyj9hj0RQwM joined
20:54
jgaz left
22:00
ToddAndMargo joined
|
|||
ToddAndMargo | Question on the BEGIN routine. If I put and "exit" in the BEGIN routine, will it just exit the routine or will it exit everything, including what is left to be compiled? | 22:01 | |
rf | It will exit everything | 22:14 | |
exit is kills the program iirc | |||
m: { BEGIN { say 123; exit 0; }; say 'yipeee'; } | 22:15 | ||
camelia | 123 | ||
ToddAndMargo | thank you! | 22:41 | |
will it stop compiling? | |||
rf | Raku is not compiled | 22:42 | |
The program will stop when it sees exit, regardless of where it is | |||
Nemokosch | Raku is somewhat compiled - there is a precompilation step, that's how the "compile-time" terminology entered | 22:47 | |
But iirc it's only observable for modules for the time being | 22:48 | ||
lizmat | and installed scripts | 22:49 | |
23:00
kjp left
23:04
kjp joined
|
|||
nHail | Raku isn't compiled by default, but is there a full raku compiler? | 23:41 | |
23:53
Heptite left
|
|||
Nemokosch | I think there might have been at some point but it was always rather experimental stuff | 23:57 |