2025-07-27 12:33:06 +08:00

12 lines
265 B
Swift

//
// GFunc.swift
// IOS_study
//
// Created by CC-star on 2025/7/3.
//
import Foundation
func sleep5() async throws { try await Task.sleep(nanoseconds: 5_000_000_000) }//5s
func sleep3() async throws { try await Task.sleep(nanoseconds: 3_000_000_000) }