Skip to content

Instantly share code, notes, and snippets.

@wspringer
Created August 7, 2024 15:03
Show Gist options
  • Save wspringer/b389f5e7ab8956840597e426f941aef7 to your computer and use it in GitHub Desktop.
Save wspringer/b389f5e7ab8956840597e426f941aef7 to your computer and use it in GitHub Desktop.
class Circle {
private radius: number;
constructor(radius: number) {
this.radius = radius;
}
circumference() {
return Math.PI * 2 * this.radius;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment