is_student = True
age = 21
if is_student:
print("You can borrow a book from the university library")
#Python
xxxxxxxxxx
const is_student = true
const age = 21
if (is_student) {
console.log("You can borrow a book from the university library");
}
//JavaScript
public class Main {
public static void main(String[] args) {
boolean is_student = true;
int age = 21;
System.out.println("You can borrow a book from the university library");
//Java
#include <iostream>
using namespace std;
int main() {
bool is_student = true;
cout << "You can borrow a book from the university library";
return 0;
//C++