8 lines
184 B
TypeScript
Executable File
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}`
|
|
}
|
|
}
|