main.cpp

 avatar
unknown
c_cpp
a year ago
194 B
4
Indexable
#include <iostream>
#include "helpers.hpp"

using namespace std;

int getASCIIFromChar(char c) {
    return int(c);
}

int main() {
    string s = "abc";
    consoleLog(s);
    
    return 0;
}
Editor is loading...
Leave a Comment