Skip to content

Commit 76cb5f1

Browse files
committed
luajit.cpp
1 parent a2d64d4 commit 76cb5f1

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

section4/luajit.cpp

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright (c) 2020 by Chrono
2+
//
3+
// g++ luajit.cpp -std=c++11 -o a.out;./a.out
4+
// g++ luajit.cpp -std=c++14 -o a.out;./a.out
5+
// g++ luajit.cpp -std=c++14 -I../common -o a.out;./a.out
6+
7+
#include <iostream>
8+
9+
//#include "std.hpp"
10+
11+
int main()
12+
{
13+
using namespace std;
14+
15+
cout << "luajit demo" << endl;
16+
}

0 commit comments

Comments
 (0)