我在源文件中设置了断点,当在调试模式下运行Main模块时,断点处不停!我错过了什么吗?
我也试过这个小小玩具的例子:
module Main where
import qualified Data.Set as S
test :: Int -> String
test num = show num
main::IO()
main = do
print $test 2
在测试num和print $test 2之前设置的断点,两个地方都不起作用
最佳答案 可能是你设置了错误的断点? Haskell断点似乎是使用“Toggle breakpoint”命令设置的.您必须在Haskell或Debug透视图中才能启用此命令.
就我而言,我不小心使用了“添加断点”命令来设置Python断点.