我遇到语法错误。我想讨论一个返回浮点数的函数。
我认为这会给我正确的答案
let cyclesPerInterrupt bps bpw cpu factor =
floor (fudge (float(factor) cyclesPerWord cpu wordsPerSec bps bpw))
但事实并非如此。我已经尝试了所有我能想到的东西,但对我来说还是没用。我知道这很愚蠢,但我想不出来。
作为参考,fudge 采用浮点数和整数,cyclesPerWord 采用 2 个整数,wordsPerSec 采用 2 个整数。Floor 接受一个泛型并返回一个浮点数。