import { memory: Memory } from 'env';
import {
  indexOf
} from './string';

export function run(): i32 {
  const helloWorld: i32 = 'Hello World!';
  return indexOf(helloWorld, 'World');
}
