Comments in Python, Java, Typescript and Go
Python
# Single line comment
"""
Multi line comment
"""
Java
// Single line comment
/*
Multi line comment
*/
Typescript
No different from Java
// Single line comment
/*
Multi line comment
*/
Go
No different from Java
// Single line comment
/*
Multi line comment
*/
Comments
Post a Comment