Skip to content
Snippets Groups Projects
Forked from an inaccessible project.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
dowhile.jl 247 B
macro doWhile(block, cond)
  println("__source__ ", __source__)
  println("cond ", cond)
  println("block ", block)
  res = quote
    error("TODO: Your code here")
  end
  println(res) # Should not print any lines referencing dowhile.jl
  res
end