main.cpp
unknown
c_cpp
2 years ago
194 B
6
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