Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Julia Keyboard Interrupt

Tags:

keyboard

julia

How would I interrupt a Julia command with the keyboard? I'm running it in the Terminal interface. For example, in Python, IDLE permits me to throw an error in a while True loop by pressing ctrl-C. I would like to be able to do the same thing in Julia. Thanks!

like image 888
user2569332 Avatar asked Oct 20 '22 22:10

user2569332


1 Answers

Ctrl+c works in the Julia REPl. In Juno you use Ctrl+j Ctrl+k.

like image 195
Chris Rackauckas Avatar answered Nov 26 '22 19:11

Chris Rackauckas