Hi,
I can tests go in the same files as the code.
proc hello(name: string): string =
result = "hello"
result.add name
when TEST:
assert hello "world" == "hello world"
RunI considering, that it is good way. Do you any best practicies of this feauture? thanks
