Quick actions

cmd+k|ctrl+k

Navigation

Languages

Docstrings

Snippet info

Language

Python

Visibility

public

Author

gustav

Created

2026-08-13T08:39:00.763922Z

Updated

2026-08-17T04:57:00.419229Z

def test(a):
  '''
  info: this function tests and prints param a
  '''
  print(a)
test(10)
INFO