Releases: 0xScodyx/pseudogen
Releases · 0xScodyx/pseudogen
Release list
pseudogen V0.1.0
This is the first version for generating pseudocode
using
scodyx@localhost ~/git/pseudogen/pg main ± ./pseudogen --input example.cpp --pgen cppexample.pgen --output test
scodyx@localhost ~/git/pseudogen/pg main ± cat test
целая main(целая argc, символ *argv[]) {
целая test = 121;
строка helloworld = "Привет, мир!";
вывод, helloworld, следСтрока;
если (test > 100) {
вернуть 125;
}
ввод, test;
вернуть 0;
}
scodyx@localhost ~/git/pseudogen/pg main ±