UNPKG

@sschepis/resolang

Version:

ResoLang - Core quantum resonance computation library

8 lines (6 loc) 223 B
// assembly/runtime/instructions/types.ts import { RISAEngine } from '../../runtime'; import { Argument } from '../argument'; export interface IInstructionHandler { execute(engine: RISAEngine, args: Argument[]): bool; }