proc myproc {} { puts "hi" } myproc # => hi
An empty argument list (the second argument after the procedure name, "myproc") means that the procedure will not accept arguments.