Customizações Avançadas
Bibliotecas
Sleep
utilizado para pausar o processo por determinado tempo atalhos /#secs /#millis /#micros /#nanos métodos secs \ @param duration the duration in seconds to pause the process sleep secs(duration) \ example usage sleep secs(1) millis \ @param duration the duration in milliseconds to pause the process sleep millis(duration) \ example usage sleep millis(1000) micros \ @param duration the duration in microseconds to pause the process sleep micros(duration) \ example usage sleep micros(1000000) nanos \ @param duration the duration in nanoseconds to pause the process sleep nanos(duration) \ example usage sleep nanos(1000000000)