Quick actions

cmd+k|ctrl+k

Navigation

Languages

Темплейты

Snippet info

Language

Nim

Visibility

public

Author

elivais777

Created

2024-11-29T14:22:19.659268Z

Updated

2024-11-29T14:22:28.255223Z

template times(x: expr, y: stmt): stmt =
  for i in 1..x:
    y

10.times:
  echo "Hello World"
INFO