You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When use println('Time: ${time.now()}') in hot reload function, error will be caused.
But if just don't output time string, there is not error.
Reproduction Steps
src code
module main
import time
[live]
fn print_message() {
println('Hello! Modify this message while the program is running. 1')
}
[live]
fn print_message2() {
t := time.now()
println('Time: ${t}')
println('Hello! Modify this message while the program is running. 2')
}
fn main() {
for {
print_message()
print_message2()
time.sleep(500 * time.millisecond)
}
}
execute cmd v -live run main.v
Expected Behavior
Hello! Modify this message while the program is running. 1
Time: [time]
Hello! Modify this message while the program is running. 2
Current Behavior
output
Hello! Modify this message while the program is running. 1
Unhandled Exception 0xC0000005
print_backtrace_skipping_top_frames is not implemented
signal 11: segmentation fault
print_backtrace_skipping_top_frames is not implemented
Possible Solution
No response
Additional Information/Context
No response
V version
V 0.4.1 981f76c
Environment details (OS name and version, etc.)
V full version: V 0.4.1 981f76c
OS: windows, Microsoft Windows 10 רҵ v19043 64 λ
Processor: 16 cpus, 64bit, little endian,
vexe mtime: 2023-09-27 15:26:57
Git version: git version 2.39.2.windows.1
Git vroot status: weekly.2023.39-5-g981f76cd-dirty
Note
You can vote for this issue using the 👍 reaction. More votes increase the issue's priority for developers.
Take into account that only the 👍 reaction counts as a vote.
Only reactions to the issue itself will be counted as votes, not comments.
Describe the bug
When use
println('Time: ${time.now()}')inhot reloadfunction, error will be caused.But if just don't output time string, there is not error.
Reproduction Steps
src code
execute cmd
v -live run main.vExpected Behavior
Current Behavior
output
Possible Solution
No response
Additional Information/Context
No response
V version
V 0.4.1 981f76c
Environment details (OS name and version, etc.)
V full version: V 0.4.1 981f76c
OS: windows, Microsoft Windows 10 רҵ v19043 64 λ
Processor: 16 cpus, 64bit, little endian,
vexe mtime: 2023-09-27 15:26:57
Git version: git version 2.39.2.windows.1
Git vroot status: weekly.2023.39-5-g981f76cd-dirty
Note
You can vote for this issue using the 👍 reaction. More votes increase the issue's priority for developers.
Take into account that only the 👍 reaction counts as a vote.
Only reactions to the issue itself will be counted as votes, not comments.