/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation and GitHub. All rights reserved.
 *--------------------------------------------------------------------------------------------*/

class Student {
	info() {
		const response = 'Hi I am a student';
		console.log(response);
	}
}

class Teacher {
	info() {
		const response = 'Hi I am a teacher';
	}
}