Files
Raghav d62f2fd1ca
Some checks failed
Release / Run TokenizeRWATemplate-contracts release (push) Has been cancelled
Release / Run TokenizeRWATemplate-frontend release (push) Has been cancelled
Update project templates and workspace configuration files
Co-Authored-By: Oz <oz-agent@warp.dev>
2026-04-16 10:38:17 +05:30

8 lines
184 B
TypeScript
Executable File

import { Contract } from '@algorandfoundation/algorand-typescript'
export class HelloWorld extends Contract {
public hello(name: string): string {
return `Hello, ${name}`
}
}