Files
TokenizeRWATemplate/projects/TokenizeRWATemplate-contracts/smart_contracts/hello_world/contract.algo.ts

8 lines
184 B
TypeScript

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