🍔Quiz
Question 1
Is the following code valid?
namespace A
let a = 1
A. Yes
B. No
Question 2
Is the following code valid?
namespace A
module B
let a = 1
A. Yes
B. No
Question 3
Give the fully-qualified name for add
?
namespace Common.Utilities
module IntHelper =
let add x y = x + y
A. add
B. IntHelper.add
C. Utilities.IntHelper.add
D. Common.Utilities.IntHelper.add
Last updated
Was this helpful?