Skip to content

Releases: 0xScodyx/pseudogen

Release list

pseudogen V0.1.0

Choose a tag to compare

@0xScodyx 0xScodyx released this 11 Mar 20:43

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 ± 