https://github.com/ishaansathaye/ishaansathaye
README file for my GitHub profile.
https://github.com/ishaansathaye/ishaansathaye
config github-config github-readme
Last synced: 5 months ago
JSON representation
README file for my GitHub profile.
- Host: GitHub
- URL: https://github.com/ishaansathaye/ishaansathaye
- Owner: ishaansathaye
- Created: 2021-10-31T03:12:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-12-15T02:06:34.000Z (6 months ago)
- Last Synced: 2025-12-17T17:53:56.419Z (6 months ago)
- Topics: config, github-config, github-readme
- Homepage: https://github.com/ishaansathaye
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
👋 Hi, I'm Ishaan Sathaye
```rust
struct SoftwareDeveloper {
name: String,
}
impl SoftwareDeveloper {
fn new() -> Self {
Self {
name: "Ishaan Sathaye".to_string(),
}
}
fn greet(&self) {
println!("Hi, I'm {} — check out some of my projects!", self.name);
}
}
fn main() {
let dev = SoftwareDeveloper::new();
dev.greet();
}
```