選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

26 行
436B

  1. const cpp_code = ``.trim();
  2. const html_code = ``.trim();
  3. const js_code = ``.trim();
  4. const flags = `
  5. -cheerp-pretty-code
  6. -cheerp-no-type-optimizer
  7. -cheerp-no-native-math
  8. -cheerp-no-math-imul
  9. -cheerp-no-math-fround
  10. -O3
  11. -target cheerp`.trim()
  12. const wasm_code = '';
  13. export const example = {
  14. title: 'Some example',
  15. cpp_code: cpp_code,
  16. js_code: js_code,
  17. wasm_code: wasm_code,
  18. html_code: html_code,
  19. flags: flags
  20. }